Merge pull request #54516 from matthewbauer/column
unixtools.utillinux: add column
This commit is contained in:
commit
62580e9529
@ -548,6 +548,12 @@ let
|
|||||||
NIX_CFLAGS_COMPILE = "-DYESSTR=__YESSTR -DNOSTR=__NOSTR";
|
NIX_CFLAGS_COMPILE = "-DYESSTR=__YESSTR -DNOSTR=__NOSTR";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
column = netBSDDerivation {
|
||||||
|
path = "usr.bin/column";
|
||||||
|
version = "8.0";
|
||||||
|
sha256 = "0r6b0hjn5ls3j3sv6chibs44fs32yyk2cg8kh70kb4cwajs4ifyl";
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
in nbPackages
|
in nbPackages
|
||||||
|
@ -55,6 +55,10 @@ let
|
|||||||
linux = pkgs.utillinux;
|
linux = pkgs.utillinux;
|
||||||
darwin = pkgs.darwin.text_cmds;
|
darwin = pkgs.darwin.text_cmds;
|
||||||
};
|
};
|
||||||
|
column = {
|
||||||
|
linux = pkgs.utillinux;
|
||||||
|
darwin = pkgs.netbsd.column;
|
||||||
|
};
|
||||||
eject = {
|
eject = {
|
||||||
linux = pkgs.utillinux;
|
linux = pkgs.utillinux;
|
||||||
};
|
};
|
||||||
@ -182,7 +186,7 @@ let
|
|||||||
compat = with bins; lib.mapAttrs makeCompat {
|
compat = with bins; lib.mapAttrs makeCompat {
|
||||||
procps = [ ps sysctl top watch ];
|
procps = [ ps sysctl top watch ];
|
||||||
utillinux = [ fsck fdisk getopt hexdump mount
|
utillinux = [ fsck fdisk getopt hexdump mount
|
||||||
script umount whereis write col ];
|
script umount whereis write col column ];
|
||||||
nettools = [ arp hostname ifconfig netstat route ];
|
nettools = [ arp hostname ifconfig netstat route ];
|
||||||
};
|
};
|
||||||
in bins // compat
|
in bins // compat
|
||||||
|
Loading…
x
Reference in New Issue
Block a user