Merge pull request #36895 from disassembler/nixui

nixui: inherit libtool for derivation
This commit is contained in:
Samuel Leathers
2018-03-12 23:32:15 -04:00
committed by GitHub

View File

@@ -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;
}
}