about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/opam/default.nix
diff options
context:
space:
mode:
authorUlrik Strid <ulrik.strid@outlook.com>2022-03-01 16:42:22 +0100
committerUlrik Strid <ulrik.strid@outlook.com>2023-02-03 08:59:34 +0100
commitc53a63adf11330c66d3f0ed0def74e0dacd2cd2a (patch)
treea8af7d43c6d03b0399390aef4b25b7d63daa4055 /pkgs/development/tools/ocaml/opam/default.nix
parentd6ccd7658182294671cdb61ef7c5db46d7e78eb4 (diff)
ocamlPackages treewide: strictDeps all packages
Diffstat (limited to 'pkgs/development/tools/ocaml/opam/default.nix')
-rw-r--r--pkgs/development/tools/ocaml/opam/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/tools/ocaml/opam/default.nix b/pkgs/development/tools/ocaml/opam/default.nix
index de831fde99f14..1db7ea151fabe 100644
--- a/pkgs/development/tools/ocaml/opam/default.nix
+++ b/pkgs/development/tools/ocaml/opam/default.nix
@@ -79,8 +79,10 @@ in stdenv.mkDerivation {
   pname = "opam";
   version = "2.1.4";
 
-  nativeBuildInputs = [ makeWrapper unzip ];
-  buildInputs = [ curl ncurses ocaml getconf ]
+  strictDeps = true;
+
+  nativeBuildInputs = [ makeWrapper unzip ocaml curl ];
+  buildInputs = [ ncurses getconf ]
     ++ lib.optionals stdenv.isLinux [ bubblewrap ]
     ++ lib.optionals stdenv.isDarwin [ Foundation ];