nixpkgs/pkgs/development/libraries/science/math/suitesparse-graphblas/default.nix

33 lines
677 B
Nix
Raw Normal View History

2020-02-11 21:33:35 -08:00
{ stdenv
, fetchFromGitHub
, cmake
, gnum4
}:
stdenv.mkDerivation rec {
pname = "suitesparse-graphblas";
2020-04-04 23:21:39 -07:00
version = "3.2.2";
2020-02-11 21:33:35 -08:00
outputs = [ "out" "dev" ];
src = fetchFromGitHub {
owner = "DrTimothyAldenDavis";
repo = "GraphBLAS";
rev = "v${version}";
2020-04-04 23:21:39 -07:00
sha256 = "04hprrgj0f44ml2f0w4jfwgrvy8l2s6ya0c9xc8gwlbmkc7a4c62";
2020-02-11 21:33:35 -08:00
};
nativeBuildInputs = [
cmake
gnum4
];
meta = with stdenv.lib; {
description = "Graph algorithms in the language of linear algebra";
homepage = "http://faculty.cse.tamu.edu/davis/GraphBLAS.html";
license = licenses.asl20;
maintainers = with maintainers; [];
platforms = with platforms; unix;
};
}