about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2024-02-04 22:07:55 +0000
committerGitHub <noreply@github.com>2024-02-04 22:07:55 +0000
commitc99f2964cbc580e8cebb88c6050a30d9d5dad76b (patch)
treef73041e866b69ee8b8c39292c8e513dfd415ef96 /pkgs/development/libraries
parent27b9de00980e81c0cf8a4853adba8ce26c6e3e90 (diff)
parent10ca34822bf272a4ad64aadd147e6ea9597f6390 (diff)
downloadnixlib-c99f2964cbc580e8cebb88c6050a30d9d5dad76b.tar
nixlib-c99f2964cbc580e8cebb88c6050a30d9d5dad76b.tar.gz
nixlib-c99f2964cbc580e8cebb88c6050a30d9d5dad76b.tar.bz2
nixlib-c99f2964cbc580e8cebb88c6050a30d9d5dad76b.tar.lz
nixlib-c99f2964cbc580e8cebb88c6050a30d9d5dad76b.tar.xz
nixlib-c99f2964cbc580e8cebb88c6050a30d9d5dad76b.tar.zst
nixlib-c99f2964cbc580e8cebb88c6050a30d9d5dad76b.zip
Merge pull request #285599 from wegank/graphblas-bump
suitesparse-graphblas: 7.4.4 -> 9.0.1
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/science/math/suitesparse-graphblas/default.nix15
1 files changed, 10 insertions, 5 deletions
diff --git a/pkgs/development/libraries/science/math/suitesparse-graphblas/default.nix b/pkgs/development/libraries/science/math/suitesparse-graphblas/default.nix
index 8a00d9ae521e..648e05376529 100644
--- a/pkgs/development/libraries/science/math/suitesparse-graphblas/default.nix
+++ b/pkgs/development/libraries/science/math/suitesparse-graphblas/default.nix
@@ -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;
   };
 }