3
0
Fork 0
forked from mirrors/nixpkgs

qrupdate: fix installation (darwin)

The issue is that the library files were not copied to $out with the
existing `installTargets` definition.

I noticed this problem on darwin, but I do not know if it is a
darwin-only problem.
This commit is contained in:
Anthony Cowley 2016-07-14 14:47:23 -04:00
parent c1a600e8df
commit 028e3d82df

View file

@ -28,7 +28,9 @@ stdenv.mkDerivation {
buildFlags = [ "lib" "solib" ];
installTargets = "install";
installTargets = if stdenv.isDarwin
then ["install-staticlib" "install-shlib"]
else "install";
buildInputs = [ gfortran openblas ];
}