lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pari-seadata-small: init at 20090618

+28
+26
pkgs/data/misc/pari-seadata-small/default.nix
··· 1 + { stdenv 2 + , fetchurl 3 + }: 4 + 5 + stdenv.mkDerivation rec { 6 + version = "20090618"; 7 + name = "pari-seadata-small-${version}"; 8 + 9 + src = fetchurl { 10 + url = "http://pari.math.u-bordeaux.fr/pub/pari/packages/seadata-small.tgz"; 11 + sha256 = "13qafribxwkz8h3haa0cng7arz0kh7398br4y7vqs9ib8w9yjnxz"; 12 + }; 13 + 14 + installPhase = '' 15 + mkdir -p "$out/share/pari" 16 + cp -R * "$out/share/pari/" 17 + ''; 18 + 19 + meta = with stdenv.lib; { 20 + description = "PARI database needed by ellap for large primes"; 21 + homepage = http://pari.math.u-bordeaux.fr/; 22 + license = licenses.gpl2Plus; 23 + platforms = platforms.all; 24 + maintainers = with maintainers; [ timokau ]; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 14808 14808 14809 14809 pari-galdata = callPackage ../data/misc/pari-galdata {}; 14810 14810 14811 + pari-seadata-small = callPackage ../data/misc/pari-seadata-small {}; 14812 + 14811 14813 poly = callPackage ../data/fonts/poly { }; 14812 14814 14813 14815 posix_man_pages = callPackage ../data/documentation/man-pages-posix { };