misc: move gfortran to nativeBuildInputs
This commit is contained in:
parent
76f9e8dc07
commit
550ffc4513
1 changed files with 2 additions and 2 deletions
|
@ -34,10 +34,10 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ removeReferencesTo ];
|
nativeBuildInputs = [ removeReferencesTo ]
|
||||||
|
++ optional (gfortran != null) gfortran;
|
||||||
|
|
||||||
buildInputs = []
|
buildInputs = []
|
||||||
++ optional (gfortran != null) gfortran
|
|
||||||
++ optional (szip != null) szip
|
++ optional (szip != null) szip
|
||||||
++ optional javaSupport jdk;
|
++ optional javaSupport jdk;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue