2018-04-24 15:12:50 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
}:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2018-04-24 15:12:50 +01:00
|
|
|
version = "20090618";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "pari-seadata-small";
|
2018-04-24 15:12:50 +01:00
|
|
|
|
|
|
|
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 stdenv.lib; {
|
|
|
|
description = "PARI database needed by ellap for large primes";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://pari.math.u-bordeaux.fr/";
|
2018-04-24 15:12:50 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ timokau ];
|
|
|
|
};
|
|
|
|
}
|