about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorWill Cohen <willcohen@users.noreply.github.com>2022-01-11 14:00:32 -0500
committerWill Cohen <willcohen@users.noreply.github.com>2022-01-11 14:00:32 -0500
commit9b7691cbb45649a11d664382ccd4531c916d53c8 (patch)
tree5f44beef799ba853675b01f6ba03e8830f99ffc7 /pkgs/shells
parent4c396be12c8ccf74cb434816821041603ab82897 (diff)
zsh: exclude util-linux on darwin
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/zsh/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/shells/zsh/default.nix b/pkgs/shells/zsh/default.nix
index 1ef17a012b5ed..71f95472bb44b 100644
--- a/pkgs/shells/zsh/default.nix
+++ b/pkgs/shells/zsh/default.nix
@@ -37,7 +37,8 @@ stdenv.mkDerivation {
     })
   ];
 
-  nativeBuildInputs = [ autoreconfHook perl groff util-linux texinfo ] ++ lib.optionals stdenv.isLinux [ yodl ];
+  nativeBuildInputs = [ autoreconfHook perl groff texinfo ]
+                      ++ lib.optionals stdenv.isLinux [ util-linux yodl ];
 
   buildInputs = [ ncurses pcre ];