pari-seadata-small: init at 20090618

This commit is contained in:
Timo Kaufmann 2018-04-24 16:12:50 +02:00
parent 7c92c26b23
commit 60fe33bbe5
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv
, fetchurl
}:
stdenv.mkDerivation rec {
version = "20090618";
name = "pari-seadata-small-${version}";
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";
homepage = http://pari.math.u-bordeaux.fr/;
license = licenses.gpl2Plus;
platforms = platforms.all;
maintainers = with maintainers; [ timokau ];
};
}

View File

@ -14808,6 +14808,8 @@ with pkgs;
pari-galdata = callPackage ../data/misc/pari-galdata {};
pari-seadata-small = callPackage ../data/misc/pari-seadata-small {};
poly = callPackage ../data/fonts/poly { };
posix_man_pages = callPackage ../data/documentation/man-pages-posix { };