summary refs log tree commit diff
path: root/pkgs/development/libraries/science/math/cholmod-extra/default.nix
blob: 52c775c9a0d0d90ab1be3d35a70bfc9162f18fb3 (plain) (blame)
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
36
37
38
39
{ stdenv, fetchFromGitHub, gfortran, suitesparse, openblas }:
let
  suitesparse_ = suitesparse;
in let
  # SuiteSparse must use the same openblas
  suitesparse = suitesparse_.override { inherit openblas; };
in stdenv.mkDerivation rec {
  pname = "cholmod-extra";
  version = "1.2.0";

  src = fetchFromGitHub {
    repo = pname;
    owner = "jluttine";
    rev = version;
    sha256 = "0hz1lfp0zaarvl0dv0zgp337hyd8np41kmdpz5rr3fc6yzw7vmkg";
  };

  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;
  };

}