openvswitch: generalize builder
[NixPkgs.git] / pkgs / data / misc / pari-galdata / default.nix
blobc7673462805065c5e8de67a2414dc223ebb2c238
1 { lib, stdenv
2 , fetchurl
3 }:
5 stdenv.mkDerivation {
6   version = "20080411";
7   pname = "pari-galdata";
9   src = fetchurl {
10     url = "http://pari.math.u-bordeaux.fr/pub/pari/packages/galdata.tgz";
11     sha256 = "1pch6bk76f1i6cwwgm7hhxi5h71m52lqayp4mnyj0jmjk406bhdp";
12   };
14   installPhase = ''
15     mkdir -p "$out/share/pari"
16     cp -R * "$out/share/pari/"
17   '';
19   meta = with lib; {
20     description = "PARI database needed to compute Galois group in degrees 8 through 11";
21     homepage = "http://pari.math.u-bordeaux.fr/";
22     license = licenses.gpl2Plus;
23     platforms = platforms.all;
24     maintainers = teams.sage.members;
25   };