Merge pull request #332814 from r-ryantm/auto-update/suitesparse-graphblas

suitesparse-graphblas: 9.2.0 -> 9.3.0
This commit is contained in:
Weijia Wang 2024-08-07 20:11:39 +02:00 committed by GitHub
commit 5914fb6a14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,21 +1,25 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, gnum4
{
lib,
stdenv,
fetchFromGitHub,
cmake,
gnum4,
}:
stdenv.mkDerivation rec {
pname = "suitesparse-graphblas";
version = "9.2.0";
version = "9.3.0";
outputs = [ "out" "dev" ];
outputs = [
"out"
"dev"
];
src = fetchFromGitHub {
owner = "DrTimothyAldenDavis";
repo = "GraphBLAS";
rev = "v${version}";
hash = "sha256-UtJ5AXbmoUA1NokgXDUDnhCZzOT1bTen6C89bsCWEIo=";
hash = "sha256-/ubvds/mg5SW8kEfnEuPyHCM/P8+ETT1Uus2ESj50Og=";
};
nativeBuildInputs = [
@ -27,6 +31,8 @@ stdenv.mkDerivation rec {
export HOME=$(mktemp -d)
'';
cmakeFlags = [ (lib.cmakeBool "GRAPHBLAS_USE_JIT" (!(stdenv.isLinux && stdenv.isAarch64))) ];
meta = with lib; {
description = "Graph algorithms in the language of linear algebra";
homepage = "https://people.engr.tamu.edu/davis/GraphBLAS.html";