about summary refs log tree commit diff
path: root/pkgs/by-name
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-02-02 06:51:13 -0500
committerGitHub <noreply@github.com>2024-02-02 06:51:13 -0500
commit6c4e33a2e2cc4dc6ad186b9e656a4d84ccb3a52c (patch)
tree54edb67d0f0524ae847f0dd4e9cd3088c42b3611 /pkgs/by-name
parent68ba236b75a646a03297cda9e641aa6877e9f6ea (diff)
parente458879574953a45f48e91e0dcb2b43e75585c33 (diff)
Merge pull request #284795 from trofi/louvain-community-gcc-13-fix
louvain-community: fix the build against `gcc-13`
Diffstat (limited to 'pkgs/by-name')
-rw-r--r--pkgs/by-name/lo/louvain-community/package.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/by-name/lo/louvain-community/package.nix b/pkgs/by-name/lo/louvain-community/package.nix
index e9dfdf722efdd..857857092353c 100644
--- a/pkgs/by-name/lo/louvain-community/package.nix
+++ b/pkgs/by-name/lo/louvain-community/package.nix
@@ -2,21 +2,24 @@
 , fetchFromGitHub
 , cmake
 , lib
+, unstableGitUpdater
 }:
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "louvain-community";
-  version = "unstable-2021-03-18";
+  version = "unstable-2024-01-30";
 
   src = fetchFromGitHub {
     owner = "meelgroup";
     repo = "louvain-community";
-    rev = "8cc5382d4844af127b1c1257373740d7e6b76f1e";
-    hash = "sha256-0i3wrDdOyleOPv5iVO1YzPfTPnIdljLabCvl3SYEQOs=";
+    rev = "681a711a530ded0b25af72ee4881d453a80ac8ac";
+    hash = "sha256-mp2gneTtm/PaCqz4JNOZgdKmFoV5ZRVwNYjHc4s2KuY=";
   };
 
   nativeBuildInputs = [ cmake ];
 
+  passthru.updateScript = unstableGitUpdater {};
+
   meta = with lib; {
     description = "Louvain Community Detection Library";
     homepage = "https://github.com/meelgroup/louvain-community";