arpack: include OpenBLAS path in pkgconfig file

This commit is contained in:
Thomas Tuegel
2015-12-22 14:22:19 -06:00
parent c55387be69
commit cd7cfcc9a2
3 changed files with 19 additions and 1 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, gfortran, openblas }:
{ stdenv, lib, copyPathsToStore, fetchurl, gfortran, openblas }:
with stdenv.lib;
@@ -7,11 +7,17 @@ let
in
stdenv.mkDerivation {
name = "arpack-${version}";
src = fetchurl {
url = "https://github.com/opencollab/arpack-ng/archive/${version}.tar.gz";
sha256 = "1fwch6vipms1ispzg2djvbzv5wag36f1dmmr3xs3mbp6imfyhvff";
};
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
postPatch = ''
substituteInPlace arpack.pc.in --replace "@openblas@" "${openblas}/lib"
'';
buildInputs = [ gfortran openblas ];
# Auto-detection fails because gfortran brings in BLAS by default