about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/science/math/mongoose/default.nix
blob: 36c53b2994f5573fd69d98644606fb9c705441b8 (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
28
29
30
{ stdenv
, fetchFromGitHub
, cmake
}:

stdenv.mkDerivation rec {
  pname = "mongoose";
  version = "2.0.4";

  outputs = [ "bin" "out" "dev" ];

  src = fetchFromGitHub {
    owner = "ScottKolo";
    repo = "Mongoose";
    rev = "v${version}";
    sha256 = "0ymwd4n8p8s0ndh1vcbmjcsm0x2cc2b7v3baww5y6as12873bcrh";
  };

  nativeBuildInputs = [
    cmake
  ];

  meta = with stdenv.lib; {
    description = "Graph Coarsening and Partitioning Library";
    homepage = "https://github.com/ScottKolo/Mongoose";
    license = licenses.gpl3;
    maintainers = with maintainers; [];
    platforms = with platforms; unix;
  };
}