add arpack-3.1.4
This commit is contained in:
parent
8bc7c9f66d
commit
bcd9f04226
24
pkgs/development/libraries/science/math/arpack/default.nix
Normal file
24
pkgs/development/libraries/science/math/arpack/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchurl, gfortran, openblas }:
|
||||
|
||||
let version = "3.1.4";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "arpack-${version}";
|
||||
src = fetchurl {
|
||||
url = "http://forge.scilab.org/index.php/p/arpack-ng/downloads/get/arpack-ng_${version}.tar.gz";
|
||||
sha256 = "0m4cqy3d7fpzx1nac3brhr298qj7vx3fchjdz5b7n0pp616cmcm1";
|
||||
};
|
||||
|
||||
buildInputs = [ gfortran ];
|
||||
propagatedBuildInputs = [ openblas ];
|
||||
|
||||
# Auto-detection fails because gfortran brings in BLAS by default
|
||||
configureFlags="--with-blas=-lopenblas --with-lapack=-lopenblas";
|
||||
|
||||
meta = {
|
||||
homepage = "http://forge.scilab.org/index.php/p/arpack-ng/";
|
||||
description = "A collection of Fortran77 subroutines to solve large scale eigenvalue problems";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
};
|
||||
}
|
@ -9730,6 +9730,8 @@ let
|
||||
|
||||
### SCIENCE/MATH
|
||||
|
||||
arpack = callPackage ../development/libraries/science/math/arpack { };
|
||||
|
||||
atlas = callPackage ../development/libraries/science/math/atlas {
|
||||
# The build process measures CPU capabilities and optimizes the
|
||||
# library to perform best on that particular machine. That is a
|
||||
|
Loading…
Reference in New Issue
Block a user