mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
unixtools: add killall
This commit is contained in:
parent
c672e37f4a
commit
bceb29f177
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user