about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPhilip Taron <philip.taron@gmail.com>2024-03-14 16:17:45 -0700
committerVincent Laporte <vbgl@users.noreply.github.com>2024-03-26 16:41:24 +0100
commitd3b17d0b54427fe55359313e451877cca790d537 (patch)
treee2fd310b8c721163ff51b3cffa8b554866f957c8 /pkgs/development
parent4fc3979c5bffa637bdff4b30521a127b3020fd9d (diff)
Avoid top-level `with ...;` in pkgs/development/interpreters/eff/default.nix
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/interpreters/eff/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/eff/default.nix b/pkgs/development/interpreters/eff/default.nix
index 3ef2831a72e88..db815c281609b 100644
--- a/pkgs/development/interpreters/eff/default.nix
+++ b/pkgs/development/interpreters/eff/default.nix
@@ -1,6 +1,10 @@
 { lib, fetchFromGitHub, ocamlPackages }:
 
-with ocamlPackages; buildDunePackage rec {
+let
+  inherit (ocamlPackages) buildDunePackage js_of_ocaml menhir;
+in
+
+buildDunePackage rec {
   pname = "eff";
   version = "5.1";