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

106 lines
2.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, gmp, bison, perl, ncurses, readline, coreutils, pkgconfig
2018-07-20 15:01:23 +00:00
, lib
2018-04-11 11:52:10 +00:00
, autoreconfHook
2018-04-23 14:28:25 +00:00
, file
2018-04-11 11:52:10 +00:00
, flint
, ntl
, cddlib
, enableFactory ? true
, enableGfanlib ? true
}:
stdenv.mkDerivation rec {
2018-07-20 15:01:23 +00:00
name = "singular-${version}";
version = "4.1.1p2";
2018-07-20 15:01:23 +00:00
src = let
# singular sorts its tarballs in directories by base release (without patch version)
# for example 4.1.1p1 will be in the directory 4-1-1
baseVersion = builtins.head (lib.splitString "p" version);
urlVersion = builtins.replaceStrings [ "." ] [ "-" ] baseVersion;
in
fetchurl {
url = "http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/${urlVersion}/singular-${version}.tar.gz";
sha256 = "07x9kri8vl4galik7lr6pscq3c51n8570pyw64i7gbj0m706f7wf";
};
2018-04-23 14:28:25 +00:00
configureFlags = [
"--with-ntl=${ntl}"
2018-07-20 15:01:23 +00:00
] ++ lib.optionals enableFactory [
2018-04-11 11:52:10 +00:00
"--enable-factory"
2018-07-20 15:01:23 +00:00
] ++ lib.optionals enableGfanlib [
2018-04-11 11:52:10 +00:00
"--enable-gfanlib"
];
postUnpack = ''
patchShebangs .
'';
# For reference (last checked on commit 75f460d):
# https://github.com/Singular/Sources/blob/spielwiese/doc/Building-Singular-from-source.md
# https://github.com/Singular/Sources/blob/spielwiese/doc/external-packages-dynamic-modules.md
buildInputs = [
# necessary
gmp
# by upstream recommended but optional
ncurses
readline
ntl
flint
2018-07-20 15:01:23 +00:00
] ++ lib.optionals enableGfanlib [
2018-04-11 11:52:10 +00:00
cddlib
];
2018-04-23 14:28:25 +00:00
nativeBuildInputs = [
bison
perl
pkgconfig
autoreconfHook
];
2018-04-23 14:28:25 +00:00
preAutoreconf = ''
find . -type f -readable -writable -exec sed \
-e 's@/bin/rm@${coreutils}&@g' \
-e 's@/bin/uname@${coreutils}&@g' \
-e 's@/usr/bin/file@${file}/bin/file@g' \
-i '{}' ';'
'';
2018-07-20 15:01:23 +00:00
hardeningDisable = lib.optional stdenv.isi686 "stackprotector";
# The Makefile actually defaults to `make install` anyway
2018-07-20 15:01:23 +00:00
buildPhase = ''
# do nothing
'';
installPhase = ''
mkdir -p "$out"
2018-04-11 11:52:10 +00:00
cp -r Singular/LIB "$out/lib"
make install
# Make sure patchelf picks up the right libraries
rm -rf libpolys factory resources omalloc Singular
'';
# simple test to make sure singular starts and finds its libraries
doInstallCheck = true;
installCheckPhase = ''
2018-07-20 15:01:23 +00:00
"$out/bin/Singular" -c 'LIB "freegb.lib"; exit;'
2018-04-11 11:52:10 +00:00
if [ $? -ne 0 ]; then
echo >&2 "Error loading the freegb library in Singular."
exit 1
fi
'';
2014-07-28 09:43:20 +00:00
enableParallelBuilding = true;
2018-07-20 15:01:23 +00:00
meta = with lib; {
description = "A CAS for polynomial computations";
2018-07-20 15:01:23 +00:00
maintainers = with maintainers; [ raskin timokau ];
# 32 bit x86 fails with some link error: `undefined reference to `__divmoddi4@GCC_7.0.0'`
2017-03-30 13:04:17 +00:00
platforms = subtractLists platforms.i686 platforms.linux;
license = licenses.gpl3; # Or GPLv2 at your option - but not GPLv4
2018-04-11 11:52:10 +00:00
homepage = http://www.singular.uni-kl.de;
2016-10-12 15:34:29 +00:00
downloadPage = "http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/";
};
}