about summary refs log tree commit diff
path: root/pkgs/by-name/lo/louvain-community/package.nix
blob: e9dfdf722efdd7f249a7b314e5fbe173bcd8a1d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
  };
})