Skip to content

Commit

Permalink
suitesparse-graphblas: 7.4.4 -> 9.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wegank committed Feb 1, 2024
1 parent eb39a06 commit 10ca348
Showing 1 changed file with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,32 +1,37 @@
{ lib, stdenv
{ lib
, stdenv
, fetchFromGitHub
, cmake
, gnum4
}:

stdenv.mkDerivation rec {
pname = "suitesparse-graphblas";
version = "7.4.4";
version = "9.0.1";

outputs = [ "out" "dev" ];

src = fetchFromGitHub {
owner = "DrTimothyAldenDavis";
repo = "GraphBLAS";
rev = "v${version}";
sha256 = "sha256-4NLYNapIiEXntXHrsyq63jIbuBJxR77X3VbLFbvtT9A=";
hash = "sha256-eNd6jlpW3KiRvOCKvNP5ttpgjPPXt2M2vLhk1Zn4gTE=";
};

nativeBuildInputs = [
cmake
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;
};
}

0 comments on commit 10ca348

Please sign in to comment.