unixtools: add killall

This commit is contained in:
Matthew Bauer 2018-06-27 16:45:52 -04:00
parent c672e37f4a
commit bceb29f177
2 changed files with 5 additions and 1 deletions

View File

@ -21731,7 +21731,7 @@ with pkgs;
unixtools = recurseIntoAttrs (callPackages ./unix-tools.nix { });
inherit (unixtools) hexdump ps logger eject umount
mount wall hostname more sysctl getconf
getent locale;
getent locale killall;
fts = if hostPlatform.isMusl then netbsd.fts else null;

View File

@ -81,6 +81,10 @@ let
linux = pkgs.nettools;
darwin = pkgs.darwin.network_cmds;
};
killall = {
linux = pkgs.psmisc;
darwin = pkgs.darwin.shell_cmds;
};
locale = {
linux = pkgs.glibc;
darwin = pkgs.netbsd.locale;