gp2c: 0.0.12 -> 0.0.13

Also, inheriting meta attributes from pari.

+4 -5
+4 -5
pkgs/applications/science/math/pari/gp2c.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "gp2c"; 10 - version = "0.0.12"; 10 + version = "0.0.13"; 11 11 12 12 src = fetchurl { 13 13 url = "https://pari.math.u-bordeaux.fr/pub/pari/GP2C/${pname}-${version}.tar.gz"; 14 - sha256 = "039ip7qkwwv46wrcdrz7y12m30kazzkjr44kqbc0h137g4wzd7zf"; 14 + hash = "sha256-JhN07Kc+vXbBEqlZPcootkgSqnYlYf2lpLLCzXmmnTY="; 15 15 }; 16 16 17 17 buildInputs = [ ··· 25 25 ]; 26 26 27 27 meta = with lib; { 28 - description = "A compiler to translate GP scripts to PARI programs"; 29 28 homepage = "http://pari.math.u-bordeaux.fr/"; 29 + description = "A compiler to translate GP scripts to PARI programs"; 30 30 downloadPage = "http://pari.math.u-bordeaux.fr/download.html"; 31 - license = licenses.gpl2Plus; 32 - maintainers = with maintainers; [ AndersonTorres ]; 31 + inherit (pari.meta) license maintainers platforms broken; 33 32 }; 34 33 }