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:
parent
c1a600e8df
commit
028e3d82df
|
@ -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 ];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue