louvain-community: init at unstable-2021-03-18

This commit is contained in:
t4ccer 2023-12-28 01:25:02 -07:00
parent e50dc6dd93
commit 7bb1056605
No known key found for this signature in database
GPG Key ID: 19E5A2D8B1E43F19

View File

@ -0,0 +1,27 @@
{ stdenv
, fetchFromGitHub
, cmake
, lib
}:
stdenv.mkDerivation (finalAttrs: {
pname = "louvain-community";
version = "unstable-2021-03-18";
src = fetchFromGitHub {
owner = "meelgroup";
repo = "louvain-community";
rev = "8cc5382d4844af127b1c1257373740d7e6b76f1e";
hash = "sha256-0i3wrDdOyleOPv5iVO1YzPfTPnIdljLabCvl3SYEQOs=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Louvain Community Detection Library";
homepage = "https://github.com/meelgroup/louvain-community";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ t4ccer ];
platforms = platforms.unix;
};
})