ocamlPackages.iter: use Dune 2

This commit is contained in:
Vincent Laporte 2020-11-30 08:18:38 +01:00 committed by Vincent Laporte
parent 3d66135e6b
commit df114c2091

View file

@ -1,9 +1,13 @@
{ lib, fetchFromGitHub, buildDunePackage, ocaml, mdx, qtest, result }:
{ lib, fetchFromGitHub, buildDunePackage, ocaml, dune-configurator
, mdx, qtest, result
}:
buildDunePackage rec {
pname = "iter";
version = "1.2.1";
useDune2 = true;
src = fetchFromGitHub {
owner = "c-cube";
repo = pname;
@ -11,10 +15,11 @@ buildDunePackage rec {
sha256 = "0j2sg50byn0ppmf6l36ksip7zx1d3gv7sc4hbbxs2rmx39jr7vxh";
};
buildInputs = lib.optionals doCheck [ mdx.bin qtest ];
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ result ];
doCheck = lib.versionAtLeast ocaml.version "4.07";
checkInputs = [ mdx.bin qtest ];
meta = {
homepage = "https://github.com/c-cube/sequence";