summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/batteries/default.nix
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-08-21 07:55:59 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-08-21 09:39:45 +0200
commit2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd (patch)
treeb763d50a5963cc0307227c2df79c03395abcc6b1 /pkgs/development/ocaml-modules/batteries/default.nix
parent746979e0fc0c5043838962a67afd1baad017ee96 (diff)
downloadnixlib-2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd.tar
nixlib-2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd.tar.gz
nixlib-2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd.tar.bz2
nixlib-2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd.tar.lz
nixlib-2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd.tar.xz
nixlib-2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd.tar.zst
nixlib-2a62e931c104ce07fd8e39944ab4b9bd4f31e0cd.zip
ocamlPackages.qtest: 2.2 -> 2.6
ocamlPackages.batteries: 2.6.0 -> 2.7.0
Diffstat (limited to 'pkgs/development/ocaml-modules/batteries/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/batteries/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/batteries/default.nix b/pkgs/development/ocaml-modules/batteries/default.nix
index b3e657842f88..7c8dc08c4888 100644
--- a/pkgs/development/ocaml-modules/batteries/default.nix
+++ b/pkgs/development/ocaml-modules/batteries/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchzip, ocaml, findlib, ocamlbuild, qtest }:
 
-let version = "2.6.0"; in
+let version = "2.7.0"; in
 
 stdenv.mkDerivation {
   name = "ocaml-batteries-${version}";
 
   src = fetchzip {
     url = "https://github.com/ocaml-batteries-team/batteries-included/archive/v${version}.tar.gz";
-    sha256 = "1nnypfxm3zkahjkzll5qn4ngpqvbxlwg9qdp8qdqvq2vl76w0672";
+    sha256 = "02rgfylz6x4y2030cclf9zwk2i8xqsydn1y9hjkja2qsk895bwfb";
   };
 
   buildInputs = [ ocaml findlib ocamlbuild qtest ];