gap : 4.4.12 -> 4.8.3
This commit is contained in:
parent
c544cbca42
commit
75f793bbb2
@ -74,6 +74,7 @@
|
|||||||
chaoflow = "Florian Friesdorf <flo@chaoflow.net>";
|
chaoflow = "Florian Friesdorf <flo@chaoflow.net>";
|
||||||
chattered = "Phil Scott <me@philscotted.com>";
|
chattered = "Phil Scott <me@philscotted.com>";
|
||||||
choochootrain = "Hurshal Patel <hurshal@imap.cc>";
|
choochootrain = "Hurshal Patel <hurshal@imap.cc>";
|
||||||
|
chrisjefferson = "Christopher Jefferson <chris@bubblescope.net>";
|
||||||
christopherpoole = "Christopher Mark Poole <mail@christopherpoole.net>";
|
christopherpoole = "Christopher Mark Poole <mail@christopherpoole.net>";
|
||||||
cleverca22 = "Michael Bishop <cleverca22@gmail.com>";
|
cleverca22 = "Michael Bishop <cleverca22@gmail.com>";
|
||||||
cmcdragonkai = "Roger Qiu <roger.qiu@matrix.ai>";
|
cmcdragonkai = "Roger Qiu <roger.qiu@matrix.ai>";
|
||||||
|
@ -1,36 +1,34 @@
|
|||||||
{ stdenv, fetchurl, pari ? null }:
|
{ stdenv, fetchurl, m4, gmp }:
|
||||||
|
|
||||||
let
|
let
|
||||||
baseName = "gap";
|
baseName = "gap";
|
||||||
version = "4r4p12";
|
version = "4r8p3";
|
||||||
|
|
||||||
pkgVer = "2012_01_12-10_47_UTC";
|
pkgVer = "2016_03_19-22_17";
|
||||||
pkgSrc = fetchurl {
|
|
||||||
url = "ftp://ftp.gap-system.org/pub/gap/gap4/tar.bz2/packages-${pkgVer}.tar.bz2";
|
|
||||||
sha256 = "0z9ncy1m5gvv4llkclxd1vpcgpb0b81a2pfmnhzvw8x708frhmnb";
|
|
||||||
};
|
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "${baseName}-${version}";
|
name = "${baseName}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "ftp://ftp.gap-system.org/pub/gap/gap4/tar.gz/${baseName}${version}.tar.gz";
|
url = "ftp://ftp.gap-system.org/pub/gap/gap48/tar.gz/${baseName}${version}_${pkgVer}.tar.gz";
|
||||||
sha256 = "0flap5lbkvpms3zznq1zwxyxyj0ax3fk7m24f3bvhvr37vyxnf40";
|
sha256 = "1rmb0lj43avv456sjwb7ia3y0wwk5shlqylpkdwnnqpjnvjbnzv6";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pari ];
|
configureFlags = [ "--with-gmp=system" ];
|
||||||
|
buildInputs = [ m4 gmp ];
|
||||||
|
|
||||||
|
postBuild = ''
|
||||||
|
pushd pkg
|
||||||
|
bash ../bin/BuildPackages.sh
|
||||||
|
popd
|
||||||
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p "$out/bin" "$out/share/gap/"
|
mkdir -p "$out/bin" "$out/share/gap/"
|
||||||
|
|
||||||
cp -r . "$out/share/gap/build-dir"
|
cp -r . "$out/share/gap/build-dir"
|
||||||
|
|
||||||
tar xf "${pkgSrc}" -C "$out/share/gap/build-dir/pkg"
|
|
||||||
|
|
||||||
${if pari != null then
|
|
||||||
''sed -e '2iexport PATH=$PATH:${pari}/bin' -i "$out/share/gap/build-dir/bin/gap.sh" ''
|
|
||||||
else ""}
|
|
||||||
sed -e "/GAP_DIR=/aGAP_DIR='$out/share/gap/build-dir/'" -i "$out/share/gap/build-dir/bin/gap.sh"
|
sed -e "/GAP_DIR=/aGAP_DIR='$out/share/gap/build-dir/'" -i "$out/share/gap/build-dir/bin/gap.sh"
|
||||||
|
|
||||||
ln -s "$out/share/gap/build-dir/bin/gap.sh" "$out/bin"
|
ln -s "$out/share/gap/build-dir/bin/gap.sh" "$out/bin"
|
||||||
@ -41,10 +39,10 @@ stdenv.mkDerivation rec {
|
|||||||
maintainers = with maintainers;
|
maintainers = with maintainers;
|
||||||
[
|
[
|
||||||
raskin
|
raskin
|
||||||
|
chrisjefferson
|
||||||
];
|
];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
homepage = http://gap-system.org/;
|
homepage = http://gap-system.org/;
|
||||||
broken = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user