depot/third_party/nixpkgs/pkgs/by-name/lo/louvain-community/package.nix
Default email 23b612e36f Project import generated by Copybara.
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
2024-01-25 23:12:00 +09:00

27 lines
655 B
Nix

{ 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;
};
})