Merge pull request #154636 from willcohen/zsh-m1

zsh: exclude util-linux on darwin
This commit is contained in:
Thiago Kenji Okada
2022-01-11 16:27:52 -03:00
committed by GitHub
+2 -1
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 ];