summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-01-31 15:19:25 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2021-02-01 16:11:29 +0100
commit99bb24459d1f0c3a9ec6bcfdbd3ecaa8dd624f3e (patch)
treed0c50d2ed0602ff33a78dc403473b198c57e7f70
parentbb84d2de239f4f0c1558d8cb0bc60a227ec7bb6e (diff)
xenstore: propagate stdlib-shims
-rw-r--r--pkgs/development/ocaml-modules/xenstore/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/xenstore/default.nix b/pkgs/development/ocaml-modules/xenstore/default.nix
index 666106fdb17a..189920290e37 100644
--- a/pkgs/development/ocaml-modules/xenstore/default.nix
+++ b/pkgs/development/ocaml-modules/xenstore/default.nix
@@ -1,5 +1,5 @@
{ lib, buildDunePackage, fetchurl
-, cstruct, ppx_cstruct, lwt, ounit
+, cstruct, ppx_cstruct, lwt, ounit, stdlib-shims
}:
buildDunePackage rec {
@@ -16,7 +16,7 @@ buildDunePackage rec {
};
nativeBuildInputs = [ ppx_cstruct ];
- propagatedBuildInputs = [ cstruct lwt ];
+ propagatedBuildInputs = [ stdlib-shims cstruct lwt ];
doCheck = true;
checkInputs = [ ounit ];