ocamlPackages.alcotest: 0.8.2 -> 0.8.5
This commit is contained in:
parent
741d20c900
commit
9120dbf180
1 changed files with 6 additions and 4 deletions
|
@ -1,12 +1,13 @@
|
||||||
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, topkg, dune
|
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, topkg, dune
|
||||||
, cmdliner, astring, fmt, result
|
, cmdliner, astring, fmt, result, uuidm
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let param =
|
let param =
|
||||||
if stdenv.lib.versionAtLeast ocaml.version "4.02" then {
|
if stdenv.lib.versionAtLeast ocaml.version "4.02" then {
|
||||||
version = "0.8.2";
|
version = "0.8.5";
|
||||||
sha256 = "1zpg079v89mz2dpnh59f9hk5r03wl26skfn43llrv3kg24abjfpf";
|
sha256 = "1mhckvdcxkikbzgvy24kjz4265l15b86a6swz7m3ynbgvqdcfzqn";
|
||||||
buildInputs = [ dune ];
|
buildInputs = [ dune ];
|
||||||
|
propagatedBuildInputs = [ uuidm ];
|
||||||
buildPhase = "dune build -p alcotest";
|
buildPhase = "dune build -p alcotest";
|
||||||
inherit (dune) installPhase;
|
inherit (dune) installPhase;
|
||||||
} else {
|
} else {
|
||||||
|
@ -28,7 +29,8 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [ ocaml findlib ] ++ param.buildInputs;
|
buildInputs = [ ocaml findlib ] ++ param.buildInputs;
|
||||||
|
|
||||||
propagatedBuildInputs = [ cmdliner astring fmt result ];
|
propagatedBuildInputs = [ cmdliner astring fmt result ]
|
||||||
|
++ (param.propagatedBuildInputs or []);
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue