nixpkgs/pkgs/development/libraries/science/math/suitesparse-graphblas/default.nix
2024-03-27 03:55:31 +00:00

38 lines
738 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, gnum4
}:
stdenv.mkDerivation rec {
pname = "suitesparse-graphblas";
version = "9.1.0";
outputs = [ "out" "dev" ];
src = fetchFromGitHub {
owner = "DrTimothyAldenDavis";
repo = "GraphBLAS";
rev = "v${version}";
hash = "sha256-YK0REOqoNa55tQt6NH/0QQ07pzAImDR5kC00sbFILH8=";
};
nativeBuildInputs = [
cmake
gnum4
];
preConfigure = ''
export HOME=$(mktemp -d)
'';
meta = with lib; {
description = "Graph algorithms in the language of linear algebra";
homepage = "https://people.engr.tamu.edu/davis/GraphBLAS.html";
license = licenses.asl20;
maintainers = with maintainers; [ wegank ];
platforms = with platforms; unix;
};
}