From 10ca34822bf272a4ad64aadd147e6ea9597f6390 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Thu, 1 Feb 2024 19:38:51 +0100 Subject: [PATCH] suitesparse-graphblas: 7.4.4 -> 9.0.1 --- .../math/suitesparse-graphblas/default.nix | 15 ++++++++++----- 1 file 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 8a00d9ae521ea..648e053765295 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; }; }