unixtools: add col to utillinux

This commit is contained in:
Matthew Bauer 2018-04-15 22:22:58 -05:00
parent 348215569a
commit 9673ac562c

View File

@ -41,6 +41,10 @@ in rec {
linux = pkgs.nettools;
darwin = pkgs.darwin.network_cmds;
};
col = singleBinary "col" {
linux = pkgs.utillinux;
darwin = pkgs.darwin.text_cmds;
};
eject = singleBinary "eject" {
linux = pkgs.utillinux;
};
@ -138,7 +142,7 @@ in rec {
utillinux = buildEnv {
name = "utillinux-compat";
paths = [ fsck fdisk getopt hexdump mount
script umount whereis write ];
script umount whereis write col ];
};
nettools = buildEnv {