From c341289ee55d0f7347d02e6d84c08806e57a1cab Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sun, 27 Sep 2020 17:12:01 +0200 Subject: [PATCH] ocamlPackages.containers-data: drop spurious dependencies --- pkgs/development/ocaml-modules/containers/data.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/containers/data.nix b/pkgs/development/ocaml-modules/containers/data.nix index 7d15d7d3c64..9cbaabd9cf1 100644 --- a/pkgs/development/ocaml-modules/containers/data.nix +++ b/pkgs/development/ocaml-modules/containers/data.nix @@ -1,5 +1,5 @@ { buildDunePackage, containers -, gen, iter, mdx, ounit, qcheck +, gen, iter, qcheck }: buildDunePackage { @@ -8,7 +8,7 @@ buildDunePackage { inherit (containers) src version; doCheck = true; - checkInputs = [ gen iter mdx.bin ounit qcheck ]; + checkInputs = [ gen iter qcheck ]; propagatedBuildInputs = [ containers ];