about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorAristid Breitkreuz <aristidb@gmail.com>2014-10-10 22:51:08 +0200
committerAristid Breitkreuz <aristidb@gmail.com>2014-10-10 22:51:08 +0200
commit26dd5dd6a41b9dbbc726de71764b749cddaabfc9 (patch)
treed84c2ef8cfd16f1a8bfc32ebb4e909fce8a5b280 /pkgs/development/ocaml-modules
parent3c45c8d53e699ddc784d42d626b708a570efb7c6 (diff)
parentd99ea69225ac63c151a713a8241ef633b8e8f8b8 (diff)
downloadnixlib-26dd5dd6a41b9dbbc726de71764b749cddaabfc9.tar
nixlib-26dd5dd6a41b9dbbc726de71764b749cddaabfc9.tar.gz
nixlib-26dd5dd6a41b9dbbc726de71764b749cddaabfc9.tar.bz2
nixlib-26dd5dd6a41b9dbbc726de71764b749cddaabfc9.tar.lz
nixlib-26dd5dd6a41b9dbbc726de71764b749cddaabfc9.tar.xz
nixlib-26dd5dd6a41b9dbbc726de71764b749cddaabfc9.tar.zst
nixlib-26dd5dd6a41b9dbbc726de71764b749cddaabfc9.zip
Merge pull request #4460 from vbgl/zarith
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 10ac88bcb90b..2f679da977d7 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 ];
   };
 }