summary refs log tree commit diff
path: root/pkgs/top-level/unix-tools.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-03-27 13:17:10 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-03-27 18:17:46 -0500
commit49455d7bae2f81c5c984faa6728c9017123fa798 (patch)
tree082b609e249a69c865c992f8c6f014d6cadbe7aa /pkgs/top-level/unix-tools.nix
parent11f0e07d4fc3791a3318950bc70bc53b2828af6b (diff)
downloadnixlib-49455d7bae2f81c5c984faa6728c9017123fa798.tar
nixlib-49455d7bae2f81c5c984faa6728c9017123fa798.tar.gz
nixlib-49455d7bae2f81c5c984faa6728c9017123fa798.tar.bz2
nixlib-49455d7bae2f81c5c984faa6728c9017123fa798.tar.lz
nixlib-49455d7bae2f81c5c984faa6728c9017123fa798.tar.xz
nixlib-49455d7bae2f81c5c984faa6728c9017123fa798.tar.zst
nixlib-49455d7bae2f81c5c984faa6728c9017123fa798.zip
treewide: replace utillinux refs of {u,}mount
umount and mount are now provided top-level
Diffstat (limited to 'pkgs/top-level/unix-tools.nix')
-rw-r--r--pkgs/top-level/unix-tools.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/top-level/unix-tools.nix b/pkgs/top-level/unix-tools.nix
index ab807290b7c1..2e2cc3cea880 100644
--- a/pkgs/top-level/unix-tools.nix
+++ b/pkgs/top-level/unix-tools.nix
@@ -45,7 +45,7 @@ in rec {
   };
   getopt = singleBinary "getopt" {
     linux = pkgs.utillinux;
-    darwin = pkgs.darwin.shell_cmds;
+    darwin = pkgs.getopt;
   };
   hexdump = singleBinary "hexdump" {
     linux = pkgs.procps;
@@ -67,7 +67,7 @@ in rec {
   };
   more = singleBinary "more" {
     linux = pkgs.utillinux;
-    darwin = pkgs.more_compat;
+    darwin = more_compat;
   };
   mount = singleBinary "mount" {
     linux = pkgs.utillinux;