aboutsummaryrefslogtreecommitdiff
path: root/dev/ci/nix/quickchick.nix
diff options
context:
space:
mode:
authorVincent Laporte2019-01-24 09:58:33 +0000
committerVincent Laporte2019-01-24 14:53:08 +0000
commitdec2994980e00eff72f474aed6da94b97c3d703a (patch)
tree00382fce91ed80519498880ceb6c4c7af357d3b3 /dev/ci/nix/quickchick.nix
parent43525f9ee12a40bf3ad2c2521832fd7fc3a658f8 (diff)
[nix-CI] Split the build inputs
Coq and the Coq libraries can now be excluded (by setting the NOCOQ environment variable).
Diffstat (limited to 'dev/ci/nix/quickchick.nix')
-rw-r--r--dev/ci/nix/quickchick.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/ci/nix/quickchick.nix b/dev/ci/nix/quickchick.nix
index b057160cb8..46bf02ae3c 100644
--- a/dev/ci/nix/quickchick.nix
+++ b/dev/ci/nix/quickchick.nix
@@ -1,5 +1,5 @@
{ ocamlPackages, ssreflect, coq-ext-lib, simple-io }:
{
- buildInputs = [ ssreflect coq-ext-lib simple-io ]
- ++ (with ocamlPackages; [ ocaml findlib ocamlbuild num ]);
+ buildInputs = with ocamlPackages; [ ocaml findlib ocamlbuild num ];
+ coqBuildInputs = [ ssreflect coq-ext-lib simple-io ];
}