summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/atd/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/atd/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/atd/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/atd/default.nix b/pkgs/development/ocaml-modules/atd/default.nix
index 61dd0f1084c1..16944c7b38bc 100644
--- a/pkgs/development/ocaml-modules/atd/default.nix
+++ b/pkgs/development/ocaml-modules/atd/default.nix
@@ -1,4 +1,4 @@
-{ lib, atdgen-codec-runtime, menhir, easy-format, buildDunePackage, re, yojson, nixosTests }:
+{ lib, atdgen-codec-runtime, cmdliner, menhir, easy-format, buildDunePackage, re, yojson, nixosTests }:
buildDunePackage rec {
pname = "atd";
@@ -7,10 +7,9 @@ buildDunePackage rec {
minimalOCamlVersion = "4.08";
nativeBuildInputs = [ menhir ];
+ buildInputs = [ cmdliner ];
propagatedBuildInputs = [ easy-format re yojson ];
- strictDeps = true;
-
passthru.tests = {
smoke-test = nixosTests.atd;
};