gp2c: 0.0.11pl3 -> 0.0.11pl4

This commit is contained in:
AndersonTorres 2020-10-09 23:15:03 -03:00
parent 781753db45
commit 69c14beb04

View File

@ -1,14 +1,15 @@
{ stdenv, fetchurl
, pari, perl }:
{ stdenv
, pari
, fetchurl
, perl }:
stdenv.mkDerivation rec {
pname = "gp2c";
version = "0.0.11pl3";
version = "0.0.11pl4";
src = fetchurl {
url = "https://pari.math.u-bordeaux.fr/pub/pari/GP2C/${pname}-${version}.tar.gz";
sha256 = "0yymbrgyjw500hqgmkj5m4nmscd7c9rs9w2c96lxgrcyab8krhrm";
sha256 = "sha256-QGocEXxTahB5fHhlWtHXgMEl6brQ34LNwScxHNuB1rI=";
};
buildInputs = [ pari perl ];
@ -19,9 +20,9 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A compiler to translate GP scripts to PARI programs";
homepage = "http://pari.math.u-bordeaux.fr/";
homepage = "http://pari.math.u-bordeaux.fr/";
downloadPage = "http://pari.math.u-bordeaux.fr/download.html";
license = licenses.gpl2Plus;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres ];
};
}