1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

giac: re-add lapack without atlas (#40 (#40458)

giac: re-add lapack without atlas
This commit is contained in:
Timo Kaufmann 2018-05-14 12:47:45 +02:00 committed by xeji
parent d71cde3198
commit 053d1e0339

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, fetchpatch, texlive, bison, flex
{ stdenv, fetchurl, fetchpatch, texlive, bison, flex, liblapackWithoutAtlas
, gmp, mpfr, pari, ntl, gsl, blas, mpfi
, readline, gettext, libpng, libao, gfortran, perl
, enableGUI ? false, libGLU_combined ? null, xorg ? null, fltk ? null
@ -42,6 +42,7 @@ stdenv.mkDerivation rec {
# gfortran.cc default output contains static libraries compiled without -fPIC
# we want libgfortran.so.3 instead
(stdenv.lib.getLib gfortran.cc)
liblapackWithoutAtlas
] ++ stdenv.lib.optionals enableGUI [
libGLU_combined fltk xorg.libX11
];