diff options
author | tv <tv@shackspace.de> | 2015-10-17 06:17:42 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-10-17 06:17:42 +0200 |
commit | fbab9828dac3df55db4b665d5b79983477ec2717 (patch) | |
tree | 1860d75368111465a76af6d4ca6dcb53a6b61694 | |
parent | ad218104244578d705e45cd299c6dc4b3e0458b2 (diff) |
krebs pkgs default: drop redundant "lib."
-rw-r--r-- | krebs/5pkgs/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/krebs/5pkgs/default.nix b/krebs/5pkgs/default.nix index e7fedce53..84fb8725b 100644 --- a/krebs/5pkgs/default.nix +++ b/krebs/5pkgs/default.nix @@ -44,7 +44,7 @@ subdirs // rec { execveBin = name: cfg: execve name (cfg // { destination = "/bin/${name}"; }); writeC = name: { destination ? "" }: src: pkgs.runCommand name {} '' - PATH=${lib.makeSearchPath "bin" (with pkgs; [ + PATH=${makeSearchPath "bin" (with pkgs; [ binutils coreutils gcc |