mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 18:42:15 +00:00
cf63a8c94c
Two reasons for this: - more fine-grained space/functionality tradeoff - preparation for the sage 8.6 update, which finally doesn't need a downgraded gap anymore but does break when unexpected (non-standard) packages are installed. Details: https://trac.sagemath.org/ticket/26983 The proper way to deal with gap packages would be to create a package set, package each one individually and have something like gap equivalent of `python.withPackages`. I am not willing to do that however.
195 lines
5.9 KiB
Nix
195 lines
5.9 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, fetchpatch
|
|
, makeWrapper
|
|
, m4
|
|
, gmp
|
|
# one of
|
|
# - "minimal" (~400M):
|
|
# Install the bare minimum of packages required by gap to start.
|
|
# This is likely to break a lot of stuff. Do not expect upstream support with
|
|
# this configuration.
|
|
# - "standard" (~700M):
|
|
# Install the "standard packages" which gap autoloads by default. These
|
|
# packages are effectively considered a part of gap.
|
|
# - "full" (~1.7G):
|
|
# Install all available packages. This takes a lot of space.
|
|
, packageSet ? "standard"
|
|
# Kept for backwards compatibility. Overrides packageSet to "full".
|
|
, keepAllPackages ? false
|
|
}:
|
|
let
|
|
# packages absolutely required for gap to start
|
|
# `*` represents the version where applicable
|
|
requiredPackages = [
|
|
"GAPDoc-*"
|
|
"primgrp-*"
|
|
"SmallGrp-*"
|
|
"transgrp"
|
|
];
|
|
# packages autoloaded by default if available
|
|
autoloadedPackages = [
|
|
"atlasrep"
|
|
"autpgrp-*"
|
|
"alnuth-*"
|
|
"crisp-*"
|
|
"ctbllib"
|
|
"FactInt-*"
|
|
"fga"
|
|
"irredsol-*"
|
|
"laguna-*"
|
|
"polenta-*"
|
|
"polycyclic-*"
|
|
"resclasses-*"
|
|
"sophus-*"
|
|
"tomlib-*"
|
|
];
|
|
standardPackages = requiredPackages ++ autoloadedPackages;
|
|
keepAll = keepAllPackages || (packageSet == "full");
|
|
packagesToKeep = requiredPackages ++ lib.optionals (packageSet == "standard") autoloadedPackages;
|
|
|
|
# Generate bash script that removes all packages from the `pkg` subdirectory
|
|
# that are not on the whitelist. The whitelist consists of strings expected by
|
|
# `find`'s `-name`.
|
|
removeNonWhitelistedPkgs = whitelist: ''
|
|
find pkg -type d -maxdepth 1 -mindepth 1 \
|
|
'' + (lib.concatStringsSep "\n" (map (str: "-not -name '${str}' \\") whitelist)) + ''
|
|
-exec echo "Removing package {}" \; \
|
|
-exec rm -r '{}' \;
|
|
'';
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "gap";
|
|
# https://www.gap-system.org/Releases/
|
|
version = "4.10.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.gap-system.org/pub/gap/gap-${lib.versions.major version}.${lib.versions.minor version}/tar.bz2/gap-${version}.tar.bz2";
|
|
sha256 = "1dmb8v4p7j1nnf7sx8sg54b49yln36bi9acwp7w1d3a1nxj17ird";
|
|
};
|
|
|
|
# remove all non-essential packages (which take up a lot of space)
|
|
preConfigure = lib.optionalString (!keepAll) (removeNonWhitelistedPkgs packagesToKeep) + ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
configureFlags = [ "--with-gmp=system" ];
|
|
|
|
buildInputs = [
|
|
m4
|
|
gmp
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
patches = [
|
|
# bugfix: https://github.com/gap-system/gap/pull/3102
|
|
(fetchpatch {
|
|
name = "fix-infinite-loop-in-writeandcheck.patch";
|
|
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/gap/patches/0001-a-version-of-the-writeandcheck.patch-from-Sage-that-.patch?id=5e61d7b6a0da3aa53d8176fa1fb9353cc559b098";
|
|
sha256 = "1zkv8bbiw3jdn54sqqvfkdkfsd7jxzq0bazwsa14g4sh2265d28j";
|
|
})
|
|
|
|
# needed for libgap (sage): https://github.com/gap-system/gap/pull/3043
|
|
(fetchpatch {
|
|
name = "add-error-messages-helper.patch";
|
|
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/gap/patches/0002-kernel-add-helper-function-for-writing-error-message.patch?id=5e61d7b6a0da3aa53d8176fa1fb9353cc559b098";
|
|
sha256 = "0c4ry5znb6hwwp8ld6k62yw8w6cqldflw3x49bbzizbmipfpidh5";
|
|
})
|
|
|
|
# needed for libgap (sage): https://github.com/gap-system/gap/pull/3096
|
|
(fetchpatch {
|
|
name = "gap-enter.patch";
|
|
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/gap/patches/0003-Prototype-for-GAP_Enter-Leave-macros-to-bracket-use-.patch?id=5e61d7b6a0da3aa53d8176fa1fb9353cc559b098";
|
|
sha256 = "12fg8mb8rm6khsz1r4k3k26jrkx4q1rv13hcrfnlhn0m7iikvc3q";
|
|
})
|
|
];
|
|
|
|
# "teststandard" is a superset of testinstall. It takes ~1h instead of ~1min.
|
|
# tests are run twice, once with all packages loaded and once without
|
|
# checkTarget = "teststandard";
|
|
|
|
doInstallCheck = true;
|
|
installCheckTarget = "testinstall";
|
|
|
|
preInstallCheck = ''
|
|
# gap tests check that the home directory exists
|
|
export HOME="$TMP/gap-home"
|
|
mkdir -p "$HOME"
|
|
|
|
# make sure gap is in PATH
|
|
export PATH="$out/bin:$PATH"
|
|
|
|
# make sure we don't accidentally use the wrong gap binary
|
|
rm -r bin
|
|
|
|
# like the defaults the Makefile, but use gap from PATH instead of the
|
|
# one from builddir
|
|
installCheckFlagsArray+=(
|
|
"TESTGAP=gap --quitonbreak -b -m 100m -o 1g -q -x 80 -r -A"
|
|
"TESTGAPauto=gap --quitonbreak -b -m 100m -o 1g -q -x 80 -r"
|
|
)
|
|
'';
|
|
|
|
postCheck = ''
|
|
# The testsuite doesn't exit with a non-zero exit code on failure.
|
|
# It leaves its logs in dev/log however.
|
|
|
|
# grep for error messages
|
|
if grep ^##### dev/log/*; then
|
|
exit 1
|
|
fi
|
|
'';
|
|
|
|
postBuild = ''
|
|
pushd pkg
|
|
bash ../bin/BuildPackages.sh
|
|
popd
|
|
'';
|
|
|
|
installTargets = [
|
|
"install-libgap"
|
|
"install-headers"
|
|
];
|
|
|
|
# full `make install` is not yet implemented, just for libgap and headers
|
|
postInstall = ''
|
|
# Install config.h, which is not currently handled by `make install-headers`
|
|
cp gen/config.h "$out/include/gap"
|
|
|
|
mkdir -p "$out/bin" "$out/share/gap/"
|
|
|
|
mkdir -p "$out/share/gap"
|
|
echo "Copying files to target directory"
|
|
cp -ar . "$out/share/gap/build-dir"
|
|
|
|
makeWrapper "$out/share/gap/build-dir/bin/gap.sh" "$out/bin/gap" \
|
|
--set GAP_DIR $out/share/gap/build-dir
|
|
'';
|
|
|
|
preFixup = ''
|
|
# patchelf won't strip references to the build dir if it still exists
|
|
rm -rf pkg
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Computational discrete algebra system";
|
|
maintainers = with maintainers;
|
|
[
|
|
raskin
|
|
chrisjefferson
|
|
timokau
|
|
];
|
|
platforms = platforms.all;
|
|
# keeping all packages increases the package size considerably, wchich
|
|
# is why a local build is preferable in that situation. The timeframe
|
|
# is reasonable and that way the binary cache doesn't get overloaded.
|
|
hydraPlatforms = lib.optionals (!keepAllPackages) meta.platforms;
|
|
license = licenses.gpl2;
|
|
homepage = http://gap-system.org/;
|
|
};
|
|
}
|