about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/stringext
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-06-28 18:13:22 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-06-28 18:41:59 +0000
commitc8c673568c8ae5df78d472e14ff6bc0078666bc6 (patch)
treed7cf8e6ec0c077294a636838f7f44dffb2f264a8 /pkgs/development/ocaml-modules/stringext
parent582c3edcfac7d2d5fb3bbcc96ce1aac092812940 (diff)
ocamlPackages.stringext: 1.4.0 -> 1.4.3
ocamlPackages.qcheck: 0.4.0.1 -> 0.6
Diffstat (limited to 'pkgs/development/ocaml-modules/stringext')
-rw-r--r--pkgs/development/ocaml-modules/stringext/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/stringext/default.nix b/pkgs/development/ocaml-modules/stringext/default.nix
index 9eb9ad514f728..c932bc3a46ac3 100644
--- a/pkgs/development/ocaml-modules/stringext/default.nix
+++ b/pkgs/development/ocaml-modules/stringext/default.nix
@@ -3,14 +3,14 @@
 , doCheck ? stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01"
 }:
 
-let version = "1.4.0"; in
+let version = "1.4.3"; in
 
 stdenv.mkDerivation {
-  name = "ocaml-stringext-${version}";
+  name = "ocaml${ocaml.version}-stringext-${version}";
 
   src = fetchzip {
     url = "https://github.com/rgrinberg/stringext/archive/v${version}.tar.gz";
-    sha256 = "1jp0x9rkss8a48z9wbnc4v5zvmnysin30345psl3xnxb2aqzwlii";
+    sha256 = "121k79vjazvsd254yg391fp4spsd1p32amccrahd0g6hjhf5w6sl";
   };
 
   buildInputs = [ ocaml findlib ocamlbuild ounit qcheck ];