
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
48 lines
896 B
Nix
48 lines
896 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
gnum4,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "suitesparse-graphblas";
|
|
version = "9.3.1";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DrTimothyAldenDavis";
|
|
repo = "GraphBLAS";
|
|
rev = "v${version}";
|
|
hash = "sha256-lNjxNW0XrHtdULDI35qp2BRCOrdKMnWu7Rje0+uBv0g=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
gnum4
|
|
];
|
|
|
|
preConfigure = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "GRAPHBLAS_USE_JIT" (
|
|
!(stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64)
|
|
))
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Graph algorithms in the language of linear algebra";
|
|
homepage = "https://people.engr.tamu.edu/davis/GraphBLAS.html";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ wegank ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|