forked from jluttine/cholmod-extra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
35 lines (27 loc) · 777 Bytes
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
let
pkgs = import <nixpkgs> {};
in with pkgs; let
suitesparse_ = suitesparse;
in let
# SuiteSparse must use the same openblas
suitesparse = suitesparse_.override { inherit openblas; };
in stdenv.mkDerivation rec {
name = "cholmod-extra";
src = ./.;
buildInputs = [ suitesparse gfortran openblas ];
buildFlags = [
"BLAS=-lopenblas"
];
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;
};
}