571c71e6f7
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.
36 lines
840 B
Nix
36 lines
840 B
Nix
{ lib, stdenv, fetchFromGitHub, gfortran, suitesparse, blas, lapack }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "cholmod-extra";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = pname;
|
|
owner = "jluttine";
|
|
rev = version;
|
|
sha256 = "0hz1lfp0zaarvl0dv0zgp337hyd8np41kmdpz5rr3fc6yzw7vmkg";
|
|
};
|
|
|
|
nativeBuildInputs = [ gfortran ];
|
|
buildInputs = [ suitesparse blas lapack ];
|
|
|
|
makeFlags = [
|
|
"BLAS=-lcblas"
|
|
];
|
|
|
|
installFlags = [
|
|
"INSTALL_LIB=$(out)/lib"
|
|
"INSTALL_INCLUDE=$(out)/include"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jluttine/cholmod-extra";
|
|
description = "Set of additional routines for SuiteSparse CHOLMOD Module";
|
|
license = with licenses; [ gpl2Plus ];
|
|
maintainers = with maintainers; [ jluttine ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
|
|
}
|