summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2014-10-10 14:43:58 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2014-10-10 14:47:33 +0100
commitd99ea69225ac63c151a713a8241ef633b8e8f8b8 (patch)
tree5650ae7e982c01fa2d8f749dc9c1cada553135ec /pkgs/development/ocaml-modules
parentb168a8c1182f2a4b148114b2cd9185288a46ee1b (diff)
downloadnixpkgs-d99ea69225ac63c151a713a8241ef633b8e8f8b8.tar
nixpkgs-d99ea69225ac63c151a713a8241ef633b8e8f8b8.tar.gz
nixpkgs-d99ea69225ac63c151a713a8241ef633b8e8f8b8.tar.bz2
nixpkgs-d99ea69225ac63c151a713a8241ef633b8e8f8b8.tar.lz
nixpkgs-d99ea69225ac63c151a713a8241ef633b8e8f8b8.tar.xz
nixpkgs-d99ea69225ac63c151a713a8241ef633b8e8f8b8.tar.zst
nixpkgs-d99ea69225ac63c151a713a8241ef633b8e8f8b8.zip
zarith: update from 1.2.1 to 1.3
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/zarith/default.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/development/ocaml-modules/zarith/default.nix b/pkgs/development/ocaml-modules/zarith/default.nix
index 10ac88bcb90..2f679da977d 100644
--- a/pkgs/development/ocaml-modules/zarith/default.nix
+++ b/pkgs/development/ocaml-modules/zarith/default.nix
@@ -3,13 +3,16 @@
 let
   ocaml_version = (builtins.parseDrvName ocaml.name).version;
 in
+
+assert stdenv.lib.versionAtLeast ocaml_version "3.12.1";
+
 stdenv.mkDerivation rec {
   name = "zarith-${version}";
-  version = "1.2.1";
+  version = "1.3";
 
   src = fetchurl {
-    url = "http://forge.ocamlcore.org/frs/download.php/1199/${name}.tgz";
-    sha256 = "0i21bsx41br0jgw8xmlpnky5zamzqkpbykrq0z53z7ar77602s4i";
+    url = http://forge.ocamlcore.org/frs/download.php/1471/zarith-1.3.tgz;
+    sha256 = "1mx3nxcn5h33qhx4gbg0hgvvydwlwdvdhqcnvfwnmf9jy3b8frll";
   };
 
   buildInputs = [ ocaml findlib pkgconfig gmp perl ];
@@ -22,11 +25,11 @@ stdenv.mkDerivation rec {
   '';
   preInstall = "mkdir -p $out/lib/ocaml/${ocaml_version}/site-lib";
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "fast, arbitrary precision OCaml integers";
     homepage    = "http://forge.ocamlcore.org/projects/zarith";
-    license     = stdenv.lib.licenses.lgpl2;
+    license     = licenses.lgpl2;
     platforms   = ocaml.meta.platforms;
-    maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
+    maintainers = with maintainers; [ thoughtpolice vbgl ];
   };
 }