Merge pull request #285599 from wegank/graphblas-bump

suitesparse-graphblas: 7.4.4 -> 9.0.1
This commit is contained in:
Robert Scott 2024-02-04 22:07:55 +00:00 committed by GitHub
commit c99f2964cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,5 @@
{ lib, stdenv
{ lib
, stdenv
, fetchFromGitHub
, cmake
, gnum4
@ -6,7 +7,7 @@
stdenv.mkDerivation rec {
pname = "suitesparse-graphblas";
version = "7.4.4";
version = "9.0.1";
outputs = [ "out" "dev" ];
@ -14,7 +15,7 @@ stdenv.mkDerivation rec {
owner = "DrTimothyAldenDavis";
repo = "GraphBLAS";
rev = "v${version}";
sha256 = "sha256-4NLYNapIiEXntXHrsyq63jIbuBJxR77X3VbLFbvtT9A=";
hash = "sha256-eNd6jlpW3KiRvOCKvNP5ttpgjPPXt2M2vLhk1Zn4gTE=";
};
nativeBuildInputs = [
@ -22,11 +23,15 @@ stdenv.mkDerivation rec {
gnum4
];
preConfigure = ''
export HOME=$(mktemp -d)
'';
meta = with lib; {
description = "Graph algorithms in the language of linear algebra";
homepage = "http://faculty.cse.tamu.edu/davis/GraphBLAS.html";
homepage = "https://people.engr.tamu.edu/davis/GraphBLAS.html";
license = licenses.asl20;
maintainers = with maintainers; [];
maintainers = with maintainers; [ wegank ];
platforms = with platforms; unix;
};
}