summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-12-20 18:49:20 -0500
committerGitHub <noreply@github.com>2019-12-20 18:49:20 -0500
commit33e87b06d3b5887471e2003b31759b6d1c870f7c (patch)
treef8bd5513e327d79f95ce5dda47ac741267bb709e /pkgs
parentd3d1b123104cda901d9bcaac7c4ed772bdaad89b (diff)
parent67bed0c6967a49cdf8580002a48f20fde1a3e3cc (diff)
downloadnixpkgs-33e87b06d3b5887471e2003b31759b6d1c870f7c.tar
nixpkgs-33e87b06d3b5887471e2003b31759b6d1c870f7c.tar.gz
nixpkgs-33e87b06d3b5887471e2003b31759b6d1c870f7c.tar.bz2
nixpkgs-33e87b06d3b5887471e2003b31759b6d1c870f7c.tar.lz
nixpkgs-33e87b06d3b5887471e2003b31759b6d1c870f7c.tar.xz
nixpkgs-33e87b06d3b5887471e2003b31759b6d1c870f7c.tar.zst
nixpkgs-33e87b06d3b5887471e2003b31759b6d1c870f7c.zip
Merge pull request #75785 from eraserhd/weechat-darwin-fix
weechat: Fix build on Darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/irc/weechat/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/irc/weechat/default.nix b/pkgs/applications/networking/irc/weechat/default.nix
index 1e03bb77ced..13ac80677ee 100644
--- a/pkgs/applications/networking/irc/weechat/default.nix
+++ b/pkgs/applications/networking/irc/weechat/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, lib
-, ncurses, openssl, aspell, gnutls
+, ncurses, openssl, aspell, gnutls, gettext
 , zlib, curl, pkgconfig, libgcrypt
 , cmake, makeWrapper, libobjc, libresolv, libiconv
 , asciidoctor # manpages
@@ -49,7 +49,7 @@ let
         ;
 
       buildInputs = with stdenv.lib; [
-          ncurses openssl aspell gnutls zlib curl pkgconfig
+          ncurses openssl aspell gnutls gettext zlib curl pkgconfig
           libgcrypt makeWrapper cmake asciidoctor
           ]
         ++ optionals stdenv.isDarwin [ libobjc libresolv ]