2020-03-31 14:47:18 +00:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch, texlive, bison, flex, lapack, blas
|
|
|
|
, gmp, mpfr, pari, ntl, gsl, mpfi, ecm, glpk, nauty
|
2017-09-30 13:34:11 +00:00
|
|
|
, readline, gettext, libpng, libao, gfortran, perl
|
2019-11-10 16:44:34 +00:00
|
|
|
, enableGUI ? false, libGL ? null, libGLU ? null, xorg ? null, fltk ? null
|
2017-09-30 09:33:14 +00:00
|
|
|
}:
|
|
|
|
|
2019-11-10 16:44:34 +00:00
|
|
|
assert enableGUI -> libGLU != null && libGL != null && xorg != null && fltk != null;
|
2020-04-20 20:50:55 +00:00
|
|
|
assert (!blas.isILP64) && (!lapack.isILP64);
|
2017-09-30 09:33:14 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-11-24 19:12:55 +00:00
|
|
|
pname = "giac${lib.optionalString enableGUI "-with-xcas"}";
|
2020-11-30 13:02:20 +00:00
|
|
|
version = "1.5.0-87"; # TODO try to remove preCheck phase on upgrade
|
2017-09-30 09:33:14 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-25 19:09:21 +00:00
|
|
|
url = "https://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/giac_${version}.tar.gz";
|
2020-11-30 13:02:20 +00:00
|
|
|
sha256 = "1d0h1yb7qvh9x7wwv9yrzmcp712f49w1iljkxp4y6g9pzsmg1mmv";
|
2017-09-30 09:33:14 +00:00
|
|
|
};
|
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
patches = lib.optionals (!enableGUI) [
|
2018-04-11 19:14:16 +00:00
|
|
|
# when enableGui is false, giac is compiled without fltk. That means some
|
|
|
|
# outputs differ in the make check. Patch around this:
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/giac/patches/nofltk-check.patch?id=7553a3c8dfa7bcec07241a07e6a4e7dcf5bb4f26";
|
|
|
|
sha256 = "0xkmfc028vg5w6va04gp2x2iv31n8v4shd6vbyvk4blzgfmpj2cw";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-09-30 13:34:11 +00:00
|
|
|
postPatch = ''
|
|
|
|
for i in doc/*/Makefile*; do
|
2017-09-30 09:33:14 +00:00
|
|
|
substituteInPlace "$i" --replace "/bin/cp" "cp";
|
|
|
|
done;
|
2017-09-30 13:34:11 +00:00
|
|
|
'';
|
2017-09-30 09:33:14 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2017-09-30 13:34:11 +00:00
|
|
|
texlive.combined.scheme-small bison flex
|
2017-09-30 09:33:14 +00:00
|
|
|
];
|
|
|
|
|
2017-09-30 13:34:11 +00:00
|
|
|
# perl is only needed for patchShebangs fixup.
|
2017-09-30 09:33:14 +00:00
|
|
|
buildInputs = [
|
2018-12-08 20:58:57 +00:00
|
|
|
gmp mpfr pari ntl gsl blas mpfi glpk nauty
|
2018-12-08 20:10:24 +00:00
|
|
|
readline gettext libpng libao perl ecm
|
2018-01-10 16:49:06 +00:00
|
|
|
# gfortran.cc default output contains static libraries compiled without -fPIC
|
|
|
|
# we want libgfortran.so.3 instead
|
2021-01-15 13:21:58 +00:00
|
|
|
(lib.getLib gfortran.cc)
|
2020-03-31 14:47:18 +00:00
|
|
|
lapack blas
|
2021-01-15 13:21:58 +00:00
|
|
|
] ++ lib.optionals enableGUI [
|
2019-11-10 16:44:34 +00:00
|
|
|
libGL libGLU fltk xorg.libX11
|
2017-09-30 09:33:14 +00:00
|
|
|
];
|
|
|
|
|
2018-12-08 20:10:24 +00:00
|
|
|
/* fixes:
|
|
|
|
configure:16211: checking for main in -lntl
|
|
|
|
configure:16230: g++ -o conftest -g -O2 conftest.cpp -lntl -llapack -lblas -lgfortran -ldl -lpng16 -lm -lmpfi -lmpfr -lgmp >&5
|
|
|
|
/nix/store/y9c1v4x7y39j2rfbg17agjwqdzxpsn18-ntl-11.3.2/lib/libntl.so: undefined reference to `pthread_key_create'
|
|
|
|
*/
|
|
|
|
NIX_CFLAGS_LINK="-lpthread";
|
|
|
|
|
2018-12-07 10:46:25 +00:00
|
|
|
# xcas Phys and Turtle menus are broken with split outputs
|
|
|
|
# and interactive use is likely to need docs
|
2021-01-15 13:21:58 +00:00
|
|
|
outputs = [ "out" ] ++ lib.optional (!enableGUI) "doc";
|
2018-04-11 19:14:16 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
2018-07-26 14:46:33 +00:00
|
|
|
preCheck = ''
|
|
|
|
# One test in this file fails. That test just tests a part of the pari
|
|
|
|
# interface that isn't actually used in giac. Of course it would be better
|
|
|
|
# to only remove that one test, but that would require a patch.
|
|
|
|
# Removing the whole test set should be good enough for now.
|
|
|
|
# Upstream report: https://xcas.univ-grenoble-alpes.fr/forum/viewtopic.php?f=4&t=2102#p10326
|
|
|
|
echo > check/chk_fhan11
|
|
|
|
'';
|
2017-09-30 13:34:11 +00:00
|
|
|
|
2017-09-30 09:33:14 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
configureFlags = [
|
2017-09-30 13:34:11 +00:00
|
|
|
"--enable-gc" "--enable-png" "--enable-gsl" "--enable-lapack"
|
|
|
|
"--enable-pari" "--enable-ntl" "--enable-gmpxx" # "--enable-cocoa"
|
2018-12-08 20:10:24 +00:00
|
|
|
"--enable-ao" "--enable-ecm" "--enable-glpk"
|
2021-01-15 13:21:58 +00:00
|
|
|
] ++ lib.optionals enableGUI [
|
2017-09-30 13:34:11 +00:00
|
|
|
"--enable-gui" "--with-x"
|
|
|
|
];
|
2017-09-30 09:33:14 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# example Makefiles contain the full path to some commands
|
|
|
|
# notably texlive, and we don't want texlive to become a runtime
|
|
|
|
# dependency
|
|
|
|
for file in $(find $out -name Makefile) ; do
|
|
|
|
sed -i "s@/nix/store/[^/]*/bin/@@" "$file" ;
|
|
|
|
done;
|
2018-04-11 19:14:16 +00:00
|
|
|
|
|
|
|
# reference cycle
|
|
|
|
rm "$out/share/giac/doc/el/"{casinter,tutoriel}/Makefile
|
|
|
|
|
2018-12-07 10:46:25 +00:00
|
|
|
if [ -n "$doc" ]; then
|
|
|
|
mkdir -p "$doc/share/giac"
|
|
|
|
mv "$out/share/giac/doc" "$doc/share/giac"
|
|
|
|
mv "$out/share/giac/examples" "$doc/share/giac"
|
|
|
|
fi
|
2021-01-15 13:21:58 +00:00
|
|
|
'' + lib.optionalString (!enableGUI) ''
|
2018-12-07 10:46:25 +00:00
|
|
|
for i in pixmaps application-registry applications icons; do
|
|
|
|
rm -r "$out/share/$i";
|
|
|
|
done;
|
2017-09-30 09:33:14 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-09-30 09:33:14 +00:00
|
|
|
description = "A free computer algebra system (CAS)";
|
|
|
|
homepage = "https://www-fourier.ujf-grenoble.fr/~parisse/giac.html";
|
|
|
|
license = licenses.gpl3Plus;
|
2019-11-24 19:12:55 +00:00
|
|
|
platforms = platforms.linux ++ (optionals (!enableGUI) platforms.darwin);
|
2017-09-30 19:40:50 +00:00
|
|
|
maintainers = [ maintainers.symphorien ];
|
2017-09-30 09:33:14 +00:00
|
|
|
};
|
|
|
|
}
|