nixpkgs/pkgs/data/misc/pari-galdata/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
629 B
Nix
Raw Normal View History

{ lib, stdenv
2018-04-24 17:11:57 +03:00
, fetchurl
}:
2019-08-14 00:52:01 +03:00
stdenv.mkDerivation {
2018-04-24 17:11:57 +03:00
version = "20080411";
pname = "pari-galdata";
2018-04-24 17:11:57 +03:00
src = fetchurl {
url = "http://pari.math.u-bordeaux.fr/pub/pari/packages/galdata.tgz";
sha256 = "1pch6bk76f1i6cwwgm7hhxi5h71m52lqayp4mnyj0jmjk406bhdp";
};
installPhase = ''
mkdir -p "$out/share/pari"
cp -R * "$out/share/pari/"
'';
meta = with lib; {
2018-04-24 17:11:57 +03:00
description = "PARI database needed to compute Galois group in degrees 8 through 11";
homepage = "http://pari.math.u-bordeaux.fr/";
2018-04-24 17:11:57 +03:00
license = licenses.gpl2Plus;
platforms = platforms.all;
maintainers = teams.sage.members;
2018-04-24 17:11:57 +03:00
};
}