about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-04-02 06:55:38 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2020-04-09 10:02:59 +0200
commit4cf775aee93760b1107a1aa87dbd2a5883fa9e64 (patch)
tree643364c8def494c42e08e0ad8750ba9fd05336bc
parenta3d6e495544b6c76d505cb2b0c0741a4190ee402 (diff)
ocamlPackages.cppo: 1.6.5 → 1.6.6
-rw-r--r--pkgs/development/tools/ocaml/cppo/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/tools/ocaml/cppo/default.nix b/pkgs/development/tools/ocaml/cppo/default.nix
index d6327010e30e4..63c169f045f9e 100644
--- a/pkgs/development/tools/ocaml/cppo/default.nix
+++ b/pkgs/development/tools/ocaml/cppo/default.nix
@@ -6,9 +6,14 @@ in
 assert stdenv.lib.versionAtLeast ocaml.version "3.12";
 
 let param =
-  if stdenv.lib.versionAtLeast ocaml.version "4.02" then {
+  if stdenv.lib.versionAtLeast ocaml.version "4.02" then
+   (if stdenv.lib.versionAtLeast ocaml.version "4.03" then {
+    version = "1.6.6";
+    sha256 = "1smcc0l6fh2n0y6bp96c69j5nw755jja99w0b206wx3yb2m4w2hs";
+   } else {
     version = "1.6.5";
     sha256 = "03c0amszy28shinvz61hm340jz446zz5763a1pdqlza36kwcj0p0";
+   }) // {
     buildInputs = [ dune ];
     extra = {
       inherit (dune) installPhase;