about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2020-10-09 23:15:03 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2020-10-12 04:07:03 -0300
commit69c14beb04f7f8046134ecc2136e015a47b9f8ef (patch)
treefda5f8edd35e29f25e94d0786147609b1fdc8e70 /pkgs/applications/science
parent781753db45c0f6f1ef2cf57000bbd792ba002811 (diff)
gp2c: 0.0.11pl3 -> 0.0.11pl4
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/pari/gp2c.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/applications/science/math/pari/gp2c.nix b/pkgs/applications/science/math/pari/gp2c.nix
index 4fa63e8edabd3..7726a0d789e97 100644
--- a/pkgs/applications/science/math/pari/gp2c.nix
+++ b/pkgs/applications/science/math/pari/gp2c.nix
@@ -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 ];
   };
 }