nixui: inherit libtool for derivation

This commit is contained in:
Samuel Leathers 2018-03-12 23:30:52 -04:00
parent 95900fd7a9
commit ba0e18829e
No known key found for this signature in database
GPG Key ID: 9BCE91C969768E0F

View File

@ -6,11 +6,11 @@
let let
nodeEnv = import ../../../development/node-packages/node-env.nix { 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; inherit nodejs;
}; };
in in
import ./node-packages.nix { import ./node-packages.nix {
inherit (pkgs) fetchurl fetchgit; inherit (pkgs) fetchurl fetchgit;
inherit nodeEnv; inherit nodeEnv;
} }