mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-17 15:58:28 +00:00
Merge pull request #332814 from r-ryantm/auto-update/suitesparse-graphblas
suitesparse-graphblas: 9.2.0 -> 9.3.0
This commit is contained in:
commit
5914fb6a14
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user