misc: move gfortran to nativeBuildInputs

This commit is contained in:
Markus Kowalewski 2021-09-03 13:33:34 +02:00
parent 76f9e8dc07
commit 550ffc4513
No known key found for this signature in database
GPG Key ID: 502A248E3FB4FF48

View File

@ -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;