From 7b1777b1e47d730dea558a5cd9b381cdee7b4f14 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Thu, 31 Aug 2023 18:56:00 -0500 Subject: [PATCH] yash: fix build on darwin --- pkgs/shells/yash/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/shells/yash/default.nix b/pkgs/shells/yash/default.nix index b30f03b7e663..4957c657b86d 100644 --- a/pkgs/shells/yash/default.nix +++ b/pkgs/shells/yash/default.nix @@ -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";