1c8aba8334
This makes packages use lapack and blas, which can wrap different BLAS/LAPACK implementations. treewide: cleanup from blas/lapack changes A few issues in the original treewide: - can’t assume blas64 is a bool - unused commented code
35 lines
817 B
Nix
35 lines
817 B
Nix
{ 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";
|
|
};
|
|
|
|
buildInputs = [ suitesparse gfortran blas lapack ];
|
|
|
|
makeFlags = [
|
|
"BLAS=-lcblas"
|
|
];
|
|
|
|
installFlags = [
|
|
"INSTALL_LIB=$(out)/lib"
|
|
"INSTALL_INCLUDE=$(out)/include"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/jluttine/cholmod-extra";
|
|
description = "A set of additional routines for SuiteSparse CHOLMOD Module";
|
|
license = with licenses; [ gpl2Plus ];
|
|
maintainers = with maintainers; [ jluttine ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
|
|
}
|