summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/gen
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-07-31 17:12:27 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-07-31 17:12:27 +0000
commit310e597d4afab0fb0a1bf19e2da8fc512b7ed11b (patch)
treed71130dad3ea9607f8be83ffb940eb022d3006c9 /pkgs/development/ocaml-modules/gen
parent3db9a2bdff0f969e491fca965b1f2863a2fec716 (diff)
downloadnixpkgs-310e597d4afab0fb0a1bf19e2da8fc512b7ed11b.tar
nixpkgs-310e597d4afab0fb0a1bf19e2da8fc512b7ed11b.tar.gz
nixpkgs-310e597d4afab0fb0a1bf19e2da8fc512b7ed11b.tar.bz2
nixpkgs-310e597d4afab0fb0a1bf19e2da8fc512b7ed11b.tar.lz
nixpkgs-310e597d4afab0fb0a1bf19e2da8fc512b7ed11b.tar.xz
nixpkgs-310e597d4afab0fb0a1bf19e2da8fc512b7ed11b.tar.zst
nixpkgs-310e597d4afab0fb0a1bf19e2da8fc512b7ed11b.zip
ocamlPackages.gen: 0.4 -> 0.4.0.1
Diffstat (limited to 'pkgs/development/ocaml-modules/gen')
-rw-r--r--pkgs/development/ocaml-modules/gen/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/gen/default.nix b/pkgs/development/ocaml-modules/gen/default.nix
index 6cbbd4adc1b..d9a1fb4770f 100644
--- a/pkgs/development/ocaml-modules/gen/default.nix
+++ b/pkgs/development/ocaml-modules/gen/default.nix
@@ -1,15 +1,15 @@
 { stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, qtest, ounit }:
 
-let version = "0.4"; in
+let version = "0.4.0.1"; in
 
 stdenv.mkDerivation {
-  name = "ocaml-gen-${version}";
+  name = "ocaml${ocaml.version}-gen-${version}";
 
   src = fetchFromGitHub {
     owner = "c-cube";
     repo = "gen";
     rev = "${version}";
-    sha256 = "041dga300fh1y6fi8y0fkri2qda406lf2dmbrgllazw3rp07zkzj";
+    sha256 = "0gg94f5l899rni3r7s7wq8plgazmbsaw498xckp25kkgpmkk61ml";
   };
 
   buildInputs = [ ocaml findlib ocamlbuild qtest ounit ];