lol
1{ lib, stdenv
2, fetchFromGitHub
3, cmake
4, gnum4
5}:
6
7stdenv.mkDerivation rec {
8 pname = "suitesparse-graphblas";
9 version = "7.4.4";
10
11 outputs = [ "out" "dev" ];
12
13 src = fetchFromGitHub {
14 owner = "DrTimothyAldenDavis";
15 repo = "GraphBLAS";
16 rev = "v${version}";
17 sha256 = "sha256-4NLYNapIiEXntXHrsyq63jIbuBJxR77X3VbLFbvtT9A=";
18 };
19
20 nativeBuildInputs = [
21 cmake
22 gnum4
23 ];
24
25 meta = with lib; {
26 description = "Graph algorithms in the language of linear algebra";
27 homepage = "http://faculty.cse.tamu.edu/davis/GraphBLAS.html";
28 license = licenses.asl20;
29 maintainers = with maintainers; [];
30 platforms = with platforms; unix;
31 };
32}