unixtools: add mount, umount for darwin

This commit is contained in:
Matthew Bauer 2018-04-12 17:17:26 -05:00
parent 5c491ab529
commit 1914ef6040

View File

@ -69,6 +69,7 @@ in rec {
}; };
mount = singleBinary "mount" { mount = singleBinary "mount" {
linux = pkgs.utillinux; linux = pkgs.utillinux;
darwin = pkgs.darwin.diskdev_cmds;
}; };
netstat = singleBinary "netstat" { netstat = singleBinary "netstat" {
linux = pkgs.nettools; linux = pkgs.nettools;
@ -96,6 +97,7 @@ in rec {
}; };
umount = singleBinary "umount" { umount = singleBinary "umount" {
linux = pkgs.utillinux; linux = pkgs.utillinux;
darwin = pkgs.darwin.diskdev_cmds;
}; };
whereis = singleBinary "whereis" { whereis = singleBinary "whereis" {
linux = pkgs.utillinux; linux = pkgs.utillinux;