Merge pull request #252659 from marsam/fix-yash-darwin

yash: fix build on darwin
This commit is contained in:
Mario Rodas 2023-08-31 21:06:40 -05:00 committed by GitHub
commit 6961053818
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
strictDeps = true;
nativeBuildInputs = [ asciidoc gettext ];
buildInputs = [ ncurses ];
buildInputs = [ ncurses ] ++ lib.optionals stdenv.isDarwin [ gettext ];
meta = with lib; {
homepage = "https://yash.osdn.jp/index.html.en";