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

72 lines
2.2 KiB
Nix
Raw Normal View History

2017-09-30 15:34:11 +02:00
{ stdenv, fetchurl, texlive, bison, flex
, gmp, mpfr, pari, ntl, gsl, blas, mpfi, liblapackWithAtlas
, 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";
version = "1.4.9-59";
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";
sha256 = "0dv5p5y6gkrsmz3xa7fw87rjyabwdwk09mqb09kb7gai9n9dgayk";
2017-09-30 11:33:14 +02:00
};
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 = [
2017-09-30 15:34:11 +02:00
gmp mpfr pari ntl gsl blas mpfi liblapackWithAtlas
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)
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
];
2017-09-30 15:34:11 +02:00
outputs = [ "out" ];
2017-09-30 11:33:14 +02:00
enableParallelBuilding = true;
hardeningDisable = [ "format" "bindnow" "relro" ];
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;
'';
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
};
}