-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82274 from jtojnar/suitesparese-5.6
suitesparse: 5.4.0 → 5.7.1 + clean up
- Loading branch information
Showing
5 changed files
with
121 additions
and
104 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
pkgs/development/libraries/science/math/mongoose/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ stdenv | ||
, fetchFromGitHub | ||
, cmake | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "mongoose"; | ||
version = "2.0.4"; | ||
|
||
outputs = [ "bin" "out" "dev" ]; | ||
|
||
src = fetchFromGitHub { | ||
owner = "ScottKolo"; | ||
repo = "Mongoose"; | ||
rev = "v${version}"; | ||
sha256 = "0ymwd4n8p8s0ndh1vcbmjcsm0x2cc2b7v3baww5y6as12873bcrh"; | ||
}; | ||
|
||
nativeBuildInputs = [ | ||
cmake | ||
]; | ||
|
||
meta = with stdenv.lib; { | ||
description = "Graph Coarsening and Partitioning Library"; | ||
homepage = "https://github.com/ScottKolo/Mongoose"; | ||
license = licenses.gpl3; | ||
maintainers = with maintainers; []; | ||
platforms = with platforms; unix; | ||
}; | ||
} |
32 changes: 32 additions & 0 deletions
32
pkgs/development/libraries/science/math/suitesparse-graphblas/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ stdenv | ||
, fetchFromGitHub | ||
, cmake | ||
, gnum4 | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "suitesparse-graphblas"; | ||
version = "3.2.1"; | ||
|
||
outputs = [ "out" "dev" ]; | ||
|
||
src = fetchFromGitHub { | ||
owner = "DrTimothyAldenDavis"; | ||
repo = "GraphBLAS"; | ||
rev = "v${version}"; | ||
sha256 = "AAwwzrpKFHy40Ldm6hTO6L0FWPYwi3kJj3zrshFwYas="; | ||
}; | ||
|
||
nativeBuildInputs = [ | ||
cmake | ||
gnum4 | ||
]; | ||
|
||
meta = with stdenv.lib; { | ||
description = "Graph algorithms in the language of linear algebra"; | ||
homepage = "http://faculty.cse.tamu.edu/davis/GraphBLAS.html"; | ||
license = licenses.asl20; | ||
maintainers = with maintainers; []; | ||
platforms = with platforms; unix; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters