summary refs log tree commit diff
path: root/pkgs/applications/science/math/gmsh/default.nix
diff options
context:
space:
mode:
authorSarah Brofeldt <sbrofeldt@gmail.com>2018-05-23 17:32:43 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-05-23 17:32:43 +0200
commit6ea941d3fd9e3988dfe6c12f6efe0d994c8664a6 (patch)
tree1dc9140ef83a027d9838a956095a185d72065508 /pkgs/applications/science/math/gmsh/default.nix
parentb86aa55408e25f22c8b7f0f53ee5ae726d28afe7 (diff)
downloadnixpkgs-6ea941d3fd9e3988dfe6c12f6efe0d994c8664a6.tar
nixpkgs-6ea941d3fd9e3988dfe6c12f6efe0d994c8664a6.tar.gz
nixpkgs-6ea941d3fd9e3988dfe6c12f6efe0d994c8664a6.tar.bz2
nixpkgs-6ea941d3fd9e3988dfe6c12f6efe0d994c8664a6.tar.lz
nixpkgs-6ea941d3fd9e3988dfe6c12f6efe0d994c8664a6.tar.xz
nixpkgs-6ea941d3fd9e3988dfe6c12f6efe0d994c8664a6.tar.zst
nixpkgs-6ea941d3fd9e3988dfe6c12f6efe0d994c8664a6.zip
gmsh: gfortran -> nativeBuildInputs (fix #40976) (#40984)
Diffstat (limited to 'pkgs/applications/science/math/gmsh/default.nix')
-rw-r--r--pkgs/applications/science/math/gmsh/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/science/math/gmsh/default.nix b/pkgs/applications/science/math/gmsh/default.nix
index 33b458ba30a..956bfe1d811 100644
--- a/pkgs/applications/science/math/gmsh/default.nix
+++ b/pkgs/applications/science/math/gmsh/default.nix
@@ -15,11 +15,13 @@ stdenv.mkDerivation {
   # that is supposed to work without Fortran but didn't for me.
   patches = [ ./CMakeLists.txt.patch ];
 
-  buildInputs = [ cmake blas liblapack gfortran gmm fltk libjpeg zlib libGLU_combined
+  buildInputs = [ cmake blas liblapack gmm fltk libjpeg zlib libGLU_combined
     libGLU xorg.libXrender xorg.libXcursor xorg.libXfixes xorg.libXext
     xorg.libXft xorg.libXinerama xorg.libX11 xorg.libSM xorg.libICE
   ];
 
+  nativeBuildInputs = [ gfortran ];
+
   enableParallelBuilding = true;
 
   meta = {