mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
Merge pull request #285599 from wegank/graphblas-bump
suitesparse-graphblas: 7.4.4 -> 9.0.1
This commit is contained in:
commit
c99f2964cb
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user