summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/mirage-profile
diff options
context:
space:
mode:
authorUlrik Strid <ulrik.strid@outlook.com>2022-03-04 11:30:58 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2022-03-25 13:55:18 +0100
commit661ee6b46824286320843905569061c4a5a2594b (patch)
treeb18179b244d0c209930822139a3c8aaaf81983ec /pkgs/development/ocaml-modules/mirage-profile
parent6e30c654e10ee724a384aa2089c3627fb7817d40 (diff)
downloadnixpkgs-661ee6b46824286320843905569061c4a5a2594b.tar
nixpkgs-661ee6b46824286320843905569061c4a5a2594b.tar.gz
nixpkgs-661ee6b46824286320843905569061c4a5a2594b.tar.bz2
nixpkgs-661ee6b46824286320843905569061c4a5a2594b.tar.lz
nixpkgs-661ee6b46824286320843905569061c4a5a2594b.tar.xz
nixpkgs-661ee6b46824286320843905569061c4a5a2594b.tar.zst
nixpkgs-661ee6b46824286320843905569061c4a5a2594b.zip
ocamlPackages treewide: Add missing inputs
Diffstat (limited to 'pkgs/development/ocaml-modules/mirage-profile')
-rw-r--r--pkgs/development/ocaml-modules/mirage-profile/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/mirage-profile/default.nix b/pkgs/development/ocaml-modules/mirage-profile/default.nix
index c6ca730bf3c..ef856e02127 100644
--- a/pkgs/development/ocaml-modules/mirage-profile/default.nix
+++ b/pkgs/development/ocaml-modules/mirage-profile/default.nix
@@ -1,5 +1,5 @@
 { lib, fetchurl, buildDunePackage
-, ppx_cstruct
+, ppx_cstruct, stdlib-shims
 , cstruct, lwt
 }:
 
@@ -15,7 +15,7 @@ buildDunePackage rec {
   };
 
   buildInputs = [ ppx_cstruct ];
-  propagatedBuildInputs = [ cstruct lwt ];
+  propagatedBuildInputs = [ cstruct lwt stdlib-shims ];
 
   meta = with lib; {
     description = "Collect runtime profiling information in CTF format";