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

33 lines
675 B
Nix
Raw Normal View History

{ lib, stdenv
2020-02-11 21:33:35 -08:00
, fetchFromGitHub
, cmake
, gnum4
}:
stdenv.mkDerivation rec {
pname = "suitesparse-graphblas";
2020-07-31 03:33:50 -07:00
version = "3.3.3";
2020-02-11 21:33:35 -08:00
outputs = [ "out" "dev" ];
src = fetchFromGitHub {
owner = "DrTimothyAldenDavis";
repo = "GraphBLAS";
rev = "v${version}";
2020-07-31 03:33:50 -07:00
sha256 = "1nmygb2yny0mdqp0mc6760gbxklq1jjm0c6s39qkdwzf3n9f8j7p";
2020-02-11 21:33:35 -08:00
};
nativeBuildInputs = [
cmake
gnum4
];
meta = with lib; {
2020-02-11 21:33:35 -08:00
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;
};
}