summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2019-01-18 15:44:41 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2019-06-04 17:27:15 +0200
commit9120dbf180fd173d8aa95ca4a89ac2ab529b675c (patch)
tree70ad7dfc351ccdd83558c44cf8ca16623a61692b
parent741d20c900025c4e5bc6f14a5703bd9340461640 (diff)
ocamlPackages.alcotest: 0.8.2 -> 0.8.5
-rw-r--r--pkgs/development/ocaml-modules/alcotest/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/alcotest/default.nix b/pkgs/development/ocaml-modules/alcotest/default.nix
index 8723b6a1f1ff..c43ad10d7d82 100644
--- a/pkgs/development/ocaml-modules/alcotest/default.nix
+++ b/pkgs/development/ocaml-modules/alcotest/default.nix
@@ -1,12 +1,13 @@
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, topkg, dune
-, cmdliner, astring, fmt, result
+, cmdliner, astring, fmt, result, uuidm
}:
let param =
if stdenv.lib.versionAtLeast ocaml.version "4.02" then {
- version = "0.8.2";
- sha256 = "1zpg079v89mz2dpnh59f9hk5r03wl26skfn43llrv3kg24abjfpf";
+ version = "0.8.5";
+ sha256 = "1mhckvdcxkikbzgvy24kjz4265l15b86a6swz7m3ynbgvqdcfzqn";
buildInputs = [ dune ];
+ propagatedBuildInputs = [ uuidm ];
buildPhase = "dune build -p alcotest";
inherit (dune) installPhase;
} else {
@@ -28,7 +29,8 @@ stdenv.mkDerivation rec {
buildInputs = [ ocaml findlib ] ++ param.buildInputs;
- propagatedBuildInputs = [ cmdliner astring fmt result ];
+ propagatedBuildInputs = [ cmdliner astring fmt result ]
+ ++ (param.propagatedBuildInputs or []);
createFindlibDestdir = true;