about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-03-12 22:47:11 -0500
committerWill Dietz <w@wdtz.org>2018-03-12 22:47:47 -0500
commit708e3fb160ad7f7e5fc1e126c26293ce618ded4f (patch)
tree2a3f3c271ef686bae5e44e110c9db778ff286bea
parent85d22e75106b9850528463e6f455cfbb39c45e48 (diff)
zed: inherit libtool, fix eval
-rw-r--r--pkgs/applications/editors/zed/node.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/zed/node.nix b/pkgs/applications/editors/zed/node.nix
index ff0bf1eb80565..f458caddbbe64 100644
--- a/pkgs/applications/editors/zed/node.nix
+++ b/pkgs/applications/editors/zed/node.nix
@@ -6,11 +6,11 @@
 
 let
   nodeEnv = import ../../../development/node-packages/node-env.nix {
-    inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile;
+    inherit (pkgs) stdenv libtool python2 utillinux runCommand writeTextFile;
     inherit nodejs;
   };
 in
 import ./node-packages.nix {
   inherit (pkgs) fetchurl fetchgit;
   inherit nodeEnv;
-}
\ No newline at end of file
+}