From 708e3fb160ad7f7e5fc1e126c26293ce618ded4f Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Mon, 12 Mar 2018 22:47:11 -0500 Subject: [PATCH] zed: inherit libtool, fix eval --- pkgs/applications/editors/zed/node.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/zed/node.nix b/pkgs/applications/editors/zed/node.nix index ff0bf1eb805..f458caddbbe 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 +}