lol

Merge pull request #192847 from AndersonTorres/pari-not-for-me

pari: remove myself from maintainers

authored by

Anderson Torres and committed by
GitHub
82ad6ead d7474e1d

+7 -7
+3 -2
pkgs/applications/science/math/pari/default.nix
··· 3 3 , fetchurl 4 4 , gmp 5 5 , libX11 6 + , libpthreadstubs 6 7 , perl 7 8 , readline 8 9 , tex 9 - , withThread ? true, libpthreadstubs 10 + , withThread ? true 10 11 }: 11 12 12 13 assert withThread -> libpthreadstubs != null; ··· 80 81 ''; 81 82 downloadPage = "http://pari.math.u-bordeaux.fr/download.html"; 82 83 license = licenses.gpl2Plus; 83 - maintainers = with maintainers; [ ertes AndersonTorres ] ++ teams.sage.members; 84 + maintainers = with maintainers; [ ertes ] ++ teams.sage.members; 84 85 platforms = platforms.linux ++ platforms.darwin; 85 86 broken = stdenv.isDarwin && stdenv.isAarch64; 86 87 mainProgram = "gp";
+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 }