about summary refs log tree commit diff
path: root/pkgs/development/libraries/science/math/arpack/default.nix
blob: 58326a6fa50373e1b0f3167748978d35a7dd2b90 (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
{ stdenv, fetchurl, gfortran, openblas }:

with stdenv.lib;

let
  version = "3.2.0";
in
stdenv.mkDerivation {
  name = "arpack-${version}";
  src = fetchurl {
    url = "https://github.com/opencollab/arpack-ng/archive/${version}.tar.gz";
    sha256 = "1fwch6vipms1ispzg2djvbzv5wag36f1dmmr3xs3mbp6imfyhvff";
  };

  buildInputs = [ gfortran openblas ];

  # Auto-detection fails because gfortran brings in BLAS by default
  configureFlags = [
    "--with-blas=-lopenblas"
    "--with-lapack=-lopenblas"
  ];

  FFLAGS = optional openblas.blas64 "-fdefault-integer-8";

  meta = {
    homepage = "http://github.com/opencollab/arpack-ng";
    description = ''
      A collection of Fortran77 subroutines to solve large scale eigenvalue
      problems.
    '';
    license = stdenv.lib.licenses.bsd3;
    maintainers = [ stdenv.lib.maintainers.ttuegel ];
  };
}