Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
29 lines
615 B
Nix
29 lines
615 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
version = "20090618";
|
|
pname = "pari-seadata-small";
|
|
|
|
src = fetchurl {
|
|
url = "http://pari.math.u-bordeaux.fr/pub/pari/packages/seadata-small.tgz";
|
|
sha256 = "13qafribxwkz8h3haa0cng7arz0kh7398br4y7vqs9ib8w9yjnxz";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/share/pari"
|
|
cp -R * "$out/share/pari/"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "PARI database needed by ellap for large primes";
|
|
homepage = "http://pari.math.u-bordeaux.fr/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
teams = [ teams.sage ];
|
|
};
|
|
}
|