mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
singular: 3.1.7 -> 4.1.1
This commit is contained in:
parent
a63ee3c356
commit
fa3d0cef67
@ -1,23 +1,52 @@
|
|||||||
{ stdenv, fetchurl, gmp, bison, perl, autoconf, ncurses, readline, coreutils, pkgconfig
|
{ stdenv, fetchurl, gmp, bison, perl, autoconf, ncurses, readline, coreutils, pkgconfig
|
||||||
, asLibsingular ? false
|
, autoreconfHook
|
||||||
|
, flint
|
||||||
|
, ntl
|
||||||
|
, cddlib
|
||||||
|
, enableFactory ? true
|
||||||
|
, enableGfanlib ? true
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "singular-${version}";
|
name = "singular-${version}${patchVersion}";
|
||||||
version="3-1-7";
|
version = "4.1.1";
|
||||||
|
patchVersion = "p1";
|
||||||
|
|
||||||
|
urlVersion = builtins.replaceStrings [ "." ] [ "-" ] version;
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/${version}/Singular-${version}.tar.gz";
|
url = "http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/${urlVersion}/singular-${version}${patchVersion}.tar.gz";
|
||||||
sha256 = "1j4mcpnwzdp3h4qspk6ww0m67rmx4s11cy17pvzbpf70lm0jzzh2";
|
sha256 = "0wvgz7l1b7zkpmim0r3mvv4fp8xnhlbz4c7hc90rn30snlansnf1";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ gmp perl ncurses readline ];
|
configureFlags = stdenv.lib.optionals enableFactory [
|
||||||
nativeBuildInputs = [ autoconf bison pkgconfig ];
|
"--enable-factory"
|
||||||
|
] ++ stdenv.lib.optionals enableGfanlib [
|
||||||
|
"--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
|
||||||
|
] ++ stdenv.lib.optionals enableGfanlib [
|
||||||
|
cddlib
|
||||||
|
];
|
||||||
|
nativeBuildInputs = [ autoconf bison perl pkgconfig autoreconfHook ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
find . -type f -exec sed -e 's@/bin/rm@${coreutils}&@g' -i '{}' ';'
|
find . -type f -exec sed -e 's@/bin/rm@${coreutils}&@g' -i '{}' ';'
|
||||||
find . -type f -exec sed -e 's@/bin/uname@${coreutils}&@g' -i '{}' ';'
|
find . -type f -exec sed -e 's@/bin/uname@${coreutils}&@g' -i '{}' ';'
|
||||||
${stdenv.lib.optionalString asLibsingular ''NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -DLIBSINGULAR"''}
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
hardeningDisable = stdenv.lib.optional stdenv.isi686 "stackprotector";
|
hardeningDisable = stdenv.lib.optional stdenv.isi686 "stackprotector";
|
||||||
@ -27,17 +56,21 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p "$out"
|
mkdir -p "$out"
|
||||||
cp -r Singular/LIB "$out/LIB"
|
cp -r Singular/LIB "$out/lib"
|
||||||
make install${stdenv.lib.optionalString asLibsingular "-libsingular"}
|
make install
|
||||||
|
|
||||||
binaries="$(find "$out"/* \( -type f -o -type l \) -perm -111 \! -name '*.so' -maxdepth 1)"
|
# Make sure patchelf picks up the right libraries
|
||||||
ln -s "$out"/*/{include,lib} "$out"
|
rm -rf libpolys factory resources omalloc Singular
|
||||||
mkdir -p "$out/bin"
|
'';
|
||||||
for b in $binaries; do
|
|
||||||
bbn="$(basename "$b")"
|
# simple test to make sure singular starts and finds its libraries
|
||||||
echo -e '#! ${stdenv.shell}\n"'"$b"'" "$@"' > "$out/bin/$bbn"
|
doInstallCheck = true;
|
||||||
chmod a+x "$out/bin/$bbn"
|
installCheckPhase = ''
|
||||||
done
|
$out/bin/Singular -c 'LIB "freegb.lib"; exit;'
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo >&2 "Error loading the freegb library in Singular."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
@ -47,7 +80,7 @@ stdenv.mkDerivation rec {
|
|||||||
maintainers = with maintainers; [ raskin ];
|
maintainers = with maintainers; [ raskin ];
|
||||||
platforms = subtractLists platforms.i686 platforms.linux;
|
platforms = subtractLists platforms.i686 platforms.linux;
|
||||||
license = licenses.gpl3; # Or GPLv2 at your option - but not GPLv4
|
license = licenses.gpl3; # Or GPLv2 at your option - but not GPLv4
|
||||||
homepage = http://www.singular.uni-kl.de/index.php;
|
homepage = http://www.singular.uni-kl.de;
|
||||||
downloadPage = "http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/";
|
downloadPage = "http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -26,6 +26,9 @@ stdenv.mkDerivation rec {
|
|||||||
] ++ stdenv.lib.optionals withBlas [
|
] ++ stdenv.lib.optionals withBlas [
|
||||||
openblas
|
openblas
|
||||||
];
|
];
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
mpfr # flint.h includes mpfr.h
|
||||||
|
];
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-gmp=${gmp}"
|
"--with-gmp=${gmp}"
|
||||||
"--with-mpir=${mpir}"
|
"--with-mpir=${mpir}"
|
||||||
|
@ -20229,13 +20229,7 @@ with pkgs;
|
|||||||
inherit (gnome3) gtksourceview;
|
inherit (gnome3) gtksourceview;
|
||||||
};
|
};
|
||||||
|
|
||||||
singular = callPackage ../applications/science/math/singular {
|
singular = callPackage ../applications/science/math/singular { };
|
||||||
stdenv = overrideCC stdenv gcc5;
|
|
||||||
};
|
|
||||||
libsingular = callPackage ../applications/science/math/singular {
|
|
||||||
asLibsingular = true;
|
|
||||||
stdenv = overrideCC stdenv gcc5;
|
|
||||||
};
|
|
||||||
|
|
||||||
scilab = callPackage ../applications/science/math/scilab {
|
scilab = callPackage ../applications/science/math/scilab {
|
||||||
withXaw3d = false;
|
withXaw3d = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user