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