about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/opam/opam.nix.pl
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/ocaml/opam/opam.nix.pl')
-rwxr-xr-xpkgs/development/tools/ocaml/opam/opam.nix.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/tools/ocaml/opam/opam.nix.pl b/pkgs/development/tools/ocaml/opam/opam.nix.pl
index 8929afdef0aba..8b573039d7d87 100755
--- a/pkgs/development/tools/ocaml/opam/opam.nix.pl
+++ b/pkgs/development/tools/ocaml/opam/opam.nix.pl
@@ -68,8 +68,10 @@ in stdenv.mkDerivation {
   pname = "opam";
   version = "$OPAM_RELEASE";
 
-  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 ];