Merge pull request #33711 from symphorien/giac-update

giac: fix build

authored by Jörg Thalheim and committed by GitHub 577f672a 9403b25e

+4 -1
+4 -1
pkgs/applications/science/math/giac/default.nix
··· 29 29 # perl is only needed for patchShebangs fixup. 30 30 buildInputs = [ 31 31 gmp mpfr pari ntl gsl blas mpfi liblapackWithAtlas 32 - readline gettext libpng libao gfortran perl 32 + readline gettext libpng libao perl 33 + # gfortran.cc default output contains static libraries compiled without -fPIC 34 + # we want libgfortran.so.3 instead 35 + (stdenv.lib.getLib gfortran.cc) 33 36 ] ++ stdenv.lib.optionals enableGUI [ 34 37 mesa fltk xorg.libX11 35 38 ];