summaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/irmin/unix.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/irmin/unix.nix')
-rw-r--r--pkgs/development/ocaml-modules/irmin/unix.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/irmin/unix.nix b/pkgs/development/ocaml-modules/irmin/unix.nix
index a3dfb5d508c2..89cf36979bde 100644
--- a/pkgs/development/ocaml-modules/irmin/unix.nix
+++ b/pkgs/development/ocaml-modules/irmin/unix.nix
@@ -1,7 +1,7 @@
{ lib, buildDunePackage
, checkseum, cmdliner, git-unix, git-cohttp-unix, yaml, fpath
, irmin, irmin-fs, irmin-git, irmin-graphql, irmin-http
-, irmin-pack, irmin-watcher, irmin-test
+, irmin-pack, irmin-watcher, irmin-test, cacert
}:
buildDunePackage rec {
@@ -18,7 +18,9 @@ buildDunePackage rec {
irmin-pack irmin-watcher git-cohttp-unix
];
- checkInputs = lib.optional doCheck irmin-test;
+ checkInputs = [
+ irmin-test cacert
+ ];
doCheck = true;