nixpkgs-suyu/pkgs/applications/science/math/giac/default.nix

106 lines
3.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, texlive, bison, flex, liblapack
, gmp, mpfr, pari, ntl, gsl, blas, mpfi
2017-09-30 15:34:11 +02:00
, readline, gettext, libpng, libao, gfortran, perl
, enableGUI ? false, libGLU_combined ? null, xorg ? null, fltk ? null
2017-09-30 11:33:14 +02:00
}:
assert enableGUI -> libGLU_combined != null && xorg != null && fltk != null;
2017-09-30 11:33:14 +02:00
stdenv.mkDerivation rec {
2017-09-30 15:34:11 +02:00
name = "${attr}-${version}";
attr = if enableGUI then "giac-with-xcas" else "giac";
2018-12-04 23:19:33 +01:00
version = "1.5.0-21"; # TODO try to remove preCheck phase on upgrade
2017-09-30 11:33:14 +02:00
src = fetchurl {
url = "https://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/giac_${version}.tar.gz";
2018-12-04 23:19:33 +01:00
sha256 = "1b9khiv0mk2xzw1rblm2jy6qsf8y6f9k7qy15sxpb21d72hzzbl2";
2017-09-30 11:33:14 +02:00
};
2018-04-11 21:14:16 +02:00
patches = stdenv.lib.optionals (!enableGUI) [
# 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 15:34:11 +02:00
postPatch = ''
for i in doc/*/Makefile*; do
2017-09-30 11:33:14 +02:00
substituteInPlace "$i" --replace "/bin/cp" "cp";
done;
2017-09-30 15:34:11 +02:00
'';
2017-09-30 11:33:14 +02:00
nativeBuildInputs = [
2017-09-30 15:34:11 +02:00
texlive.combined.scheme-small bison flex
2017-09-30 11:33:14 +02:00
];
2017-09-30 15:34:11 +02:00
# perl is only needed for patchShebangs fixup.
2017-09-30 11:33:14 +02:00
buildInputs = [
gmp mpfr pari ntl gsl blas mpfi
readline gettext libpng libao perl
# gfortran.cc default output contains static libraries compiled without -fPIC
# we want libgfortran.so.3 instead
(stdenv.lib.getLib gfortran.cc)
liblapack
2017-09-30 15:34:11 +02:00
] ++ stdenv.lib.optionals enableGUI [
libGLU_combined fltk xorg.libX11
2017-09-30 11:33:14 +02:00
];
# xcas Phys and Turtle menus are broken with split outputs
# and interactive use is likely to need docs
outputs = [ "out" ] ++ stdenv.lib.optional (!enableGUI) "doc";
2018-04-11 21:14:16 +02:00
doCheck = true;
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 15:34:11 +02:00
2017-09-30 11:33:14 +02:00
enableParallelBuilding = true;
configureFlags = [
2017-09-30 15:34:11 +02:00
"--enable-gc" "--enable-png" "--enable-gsl" "--enable-lapack"
"--enable-pari" "--enable-ntl" "--enable-gmpxx" # "--enable-cocoa"
"--enable-ao"
] ++ stdenv.lib.optionals enableGUI [
"--enable-gui" "--with-x"
];
2017-09-30 11:33:14 +02: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 21:14:16 +02:00
# reference cycle
rm "$out/share/giac/doc/el/"{casinter,tutoriel}/Makefile
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
'' + stdenv.lib.optionalString (!enableGUI) ''
for i in pixmaps application-registry applications icons; do
rm -r "$out/share/$i";
done;
2017-09-30 11:33:14 +02:00
'';
meta = with stdenv.lib; {
description = "A free computer algebra system (CAS)";
homepage = "https://www-fourier.ujf-grenoble.fr/~parisse/giac.html";
license = licenses.gpl3Plus;
## xcas is buildable on darwin but there are specific instructions I could
## not test
platforms = platforms.linux;
2017-09-30 21:40:50 +02:00
maintainers = [ maintainers.symphorien ];
2017-09-30 11:33:14 +02:00
};
}