zsh: exclude util-linux on darwin

This commit is contained in:
Will Cohen 2022-01-11 14:00:32 -05:00
parent 4c396be12c
commit 9b7691cbb4

View File

@ -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 ];