summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-08-31 18:56:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2023-08-31 18:56:00 -0500
commit7b1777b1e47d730dea558a5cd9b381cdee7b4f14 (patch)
treee3ebe4c1ec21b73f270909bb643ae1dccebd99ff
parentb3dacf0b74edaeec8a54af0d5dcc8bad9dc73e1c (diff)
downloadnixpkgs-7b1777b1e47d730dea558a5cd9b381cdee7b4f14.tar
nixpkgs-7b1777b1e47d730dea558a5cd9b381cdee7b4f14.tar.gz
nixpkgs-7b1777b1e47d730dea558a5cd9b381cdee7b4f14.tar.bz2
nixpkgs-7b1777b1e47d730dea558a5cd9b381cdee7b4f14.tar.lz
nixpkgs-7b1777b1e47d730dea558a5cd9b381cdee7b4f14.tar.xz
nixpkgs-7b1777b1e47d730dea558a5cd9b381cdee7b4f14.tar.zst
nixpkgs-7b1777b1e47d730dea558a5cd9b381cdee7b4f14.zip
yash: fix build on darwin
-rw-r--r--pkgs/shells/yash/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/shells/yash/default.nix b/pkgs/shells/yash/default.nix
index b30f03b7e66..4957c657b86 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";