2018-05-08 14:36:00 +00:00
|
|
|
{ pkgs, buildEnv, runCommand, hostPlatform, lib
|
|
|
|
, stdenv }:
|
2018-03-26 04:01:31 +00:00
|
|
|
|
2018-03-27 03:37:49 +00:00
|
|
|
# These are some unix tools that are commonly included in the /usr/bin
|
|
|
|
# and /usr/sbin directory under more normal distributions. Along with
|
|
|
|
# coreutils, these are commonly assumed to be available by build
|
|
|
|
# systems, but we can't assume they are available. In Nix, we list
|
|
|
|
# each program by name directly through this unixtools attribute.
|
|
|
|
|
|
|
|
# You should always try to use single binaries when available. For
|
|
|
|
# instance, if your program needs to use "ps", just list it as a build
|
|
|
|
# input, not "procps" which requires Linux.
|
|
|
|
|
2018-03-26 04:01:31 +00:00
|
|
|
let
|
2018-05-24 04:38:35 +00:00
|
|
|
version = "1003.1-2008";
|
|
|
|
|
2018-03-28 00:26:10 +00:00
|
|
|
singleBinary = cmd: providers: let
|
2018-04-13 16:10:36 +00:00
|
|
|
provider = "${lib.getBin providers.${hostPlatform.parsed.kernel.name}}/bin/${cmd}";
|
2018-05-24 04:38:35 +00:00
|
|
|
in runCommand "${cmd}-${version}" {
|
2018-03-28 00:26:10 +00:00
|
|
|
meta.platforms = map (n: { kernel.name = n; }) (pkgs.lib.attrNames providers);
|
|
|
|
} ''
|
|
|
|
if ! [ -x "${provider}" ]; then
|
|
|
|
echo "Cannot find command ${cmd}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-06-11 18:49:50 +00:00
|
|
|
install -D "${provider}" "$out/bin/${cmd}"
|
2018-03-28 00:26:10 +00:00
|
|
|
'';
|
2018-03-26 04:01:31 +00:00
|
|
|
|
2018-03-27 03:37:49 +00:00
|
|
|
# more is unavailable in darwin
|
|
|
|
# just use less
|
2018-05-24 04:38:35 +00:00
|
|
|
more_compat = runCommand "more-${version}" {} ''
|
2018-03-27 03:37:49 +00:00
|
|
|
mkdir -p $out/bin
|
|
|
|
ln -s ${pkgs.less}/bin/less $out/bin/more
|
|
|
|
'';
|
|
|
|
|
2018-05-07 17:44:56 +00:00
|
|
|
bins = lib.mapAttrs singleBinary {
|
|
|
|
# singular binaries
|
|
|
|
arp = {
|
|
|
|
linux = pkgs.nettools;
|
|
|
|
darwin = pkgs.darwin.network_cmds;
|
|
|
|
};
|
|
|
|
col = {
|
|
|
|
linux = pkgs.utillinux;
|
|
|
|
darwin = pkgs.darwin.text_cmds;
|
|
|
|
};
|
|
|
|
eject = {
|
|
|
|
linux = pkgs.utillinux;
|
|
|
|
};
|
2018-05-08 20:37:10 +00:00
|
|
|
getconf = {
|
2018-05-31 16:44:17 +00:00
|
|
|
linux = if hostPlatform.libc == "glibc" then lib.getBin pkgs.glibc
|
2018-05-31 16:33:36 +00:00
|
|
|
else pkgs.netbsd.getconf;
|
2018-05-08 14:36:00 +00:00
|
|
|
darwin = pkgs.darwin.system_cmds;
|
|
|
|
};
|
|
|
|
getent = {
|
2018-05-31 16:44:17 +00:00
|
|
|
linux = if hostPlatform.libc == "glibc" then lib.getBin pkgs.glibc
|
2018-05-31 16:33:36 +00:00
|
|
|
else pkgs.netbsd.getent;
|
|
|
|
darwin = pkgs.netbsd.getent;
|
2018-05-08 14:36:00 +00:00
|
|
|
};
|
2018-05-07 17:44:56 +00:00
|
|
|
getopt = {
|
|
|
|
linux = pkgs.utillinux;
|
|
|
|
darwin = pkgs.getopt;
|
|
|
|
};
|
|
|
|
fdisk = {
|
|
|
|
linux = pkgs.utillinux;
|
|
|
|
darwin = pkgs.darwin.diskdev_cmds;
|
|
|
|
};
|
|
|
|
fsck = {
|
|
|
|
linux = pkgs.utillinux;
|
|
|
|
darwin = pkgs.darwin.diskdev_cmds;
|
|
|
|
};
|
|
|
|
hexdump = {
|
|
|
|
linux = pkgs.utillinux;
|
|
|
|
darwin = pkgs.darwin.shell_cmds;
|
|
|
|
};
|
|
|
|
hostname = {
|
|
|
|
linux = pkgs.nettools;
|
|
|
|
darwin = pkgs.darwin.shell_cmds;
|
|
|
|
};
|
|
|
|
ifconfig = {
|
|
|
|
linux = pkgs.nettools;
|
|
|
|
darwin = pkgs.darwin.network_cmds;
|
|
|
|
};
|
2018-06-27 20:45:52 +00:00
|
|
|
killall = {
|
|
|
|
linux = pkgs.psmisc;
|
|
|
|
darwin = pkgs.darwin.shell_cmds;
|
|
|
|
};
|
2018-06-11 15:19:31 +00:00
|
|
|
locale = {
|
|
|
|
linux = pkgs.glibc;
|
2018-06-11 18:46:46 +00:00
|
|
|
darwin = pkgs.netbsd.locale;
|
2018-06-11 15:19:31 +00:00
|
|
|
};
|
2018-05-07 17:44:56 +00:00
|
|
|
logger = {
|
|
|
|
linux = pkgs.utillinux;
|
|
|
|
};
|
|
|
|
more = {
|
|
|
|
linux = pkgs.utillinux;
|
|
|
|
darwin = more_compat;
|
|
|
|
};
|
|
|
|
mount = {
|
|
|
|
linux = pkgs.utillinux;
|
|
|
|
darwin = pkgs.darwin.diskdev_cmds;
|
|
|
|
};
|
|
|
|
netstat = {
|
|
|
|
linux = pkgs.nettools;
|
|
|
|
darwin = pkgs.darwin.network_cmds;
|
|
|
|
};
|
|
|
|
ping = {
|
|
|
|
linux = pkgs.iputils;
|
|
|
|
darwin = pkgs.darwin.network_cmds;
|
|
|
|
};
|
|
|
|
ps = {
|
|
|
|
linux = pkgs.procps;
|
|
|
|
darwin = pkgs.darwin.ps;
|
|
|
|
};
|
|
|
|
quota = {
|
|
|
|
linux = pkgs.linuxquota;
|
|
|
|
darwin = pkgs.darwin.diskdev_cmds;
|
|
|
|
};
|
|
|
|
route = {
|
|
|
|
linux = pkgs.nettools;
|
|
|
|
darwin = pkgs.darwin.network_cmds;
|
|
|
|
};
|
|
|
|
script = {
|
|
|
|
linux = pkgs.utillinux;
|
|
|
|
darwin = pkgs.darwin.shell_cmds;
|
|
|
|
};
|
|
|
|
sysctl = {
|
|
|
|
linux = pkgs.procps;
|
|
|
|
darwin = pkgs.darwin.system_cmds;
|
|
|
|
};
|
|
|
|
top = {
|
|
|
|
linux = pkgs.procps;
|
|
|
|
darwin = pkgs.darwin.top;
|
|
|
|
};
|
|
|
|
umount = {
|
|
|
|
linux = pkgs.utillinux;
|
|
|
|
darwin = pkgs.darwin.diskdev_cmds;
|
|
|
|
};
|
|
|
|
whereis = {
|
|
|
|
linux = pkgs.utillinux;
|
|
|
|
darwin = pkgs.darwin.shell_cmds;
|
|
|
|
};
|
|
|
|
wall = {
|
|
|
|
linux = pkgs.utillinux;
|
|
|
|
};
|
|
|
|
write = {
|
|
|
|
linux = pkgs.utillinux;
|
|
|
|
darwin = pkgs.darwin.basic_cmds;
|
|
|
|
};
|
2018-03-27 03:37:49 +00:00
|
|
|
};
|
2018-05-07 17:44:56 +00:00
|
|
|
|
|
|
|
makeCompat = name': value: buildEnv {
|
2018-05-24 04:38:35 +00:00
|
|
|
name = name' + "-compat-${version}";
|
2018-05-07 18:16:58 +00:00
|
|
|
paths = value;
|
2018-03-26 04:01:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Compatibility derivations
|
2018-03-27 03:37:49 +00:00
|
|
|
# Provided for old usage of these commands.
|
2018-05-07 17:44:56 +00:00
|
|
|
compat = with bins; lib.mapAttrs makeCompat {
|
|
|
|
procps = [ ps sysctl top ];
|
|
|
|
utillinux = [ fsck fdisk getopt hexdump mount
|
|
|
|
script umount whereis write col ];
|
|
|
|
nettools = [ arp hostname ifconfig netstat route ];
|
2018-03-26 04:01:31 +00:00
|
|
|
};
|
2018-05-07 17:44:56 +00:00
|
|
|
in bins // compat
|