about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/gomuks
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-03-21 05:17:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-03-21 05:17:00 -0500
commit7faf44250d658654c2d5cd35ef77f73faf2ebe0c (patch)
tree723358dd87cdb6e62e4bc817e57a78ee2dfd2a5d /pkgs/applications/networking/instant-messengers/gomuks
parentdbb3f260cae38cd2d53a1e3744160970d5e39f13 (diff)
gomuks: fix build on darwin
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/gomuks')
-rw-r--r--pkgs/applications/networking/instant-messengers/gomuks/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/networking/instant-messengers/gomuks/default.nix b/pkgs/applications/networking/instant-messengers/gomuks/default.nix
index a36f72c03d088..27790c2c9e085 100644
--- a/pkgs/applications/networking/instant-messengers/gomuks/default.nix
+++ b/pkgs/applications/networking/instant-messengers/gomuks/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildGoModule, fetchFromGitHub }:
+{ stdenv, buildGoModule, fetchFromGitHub, Security }:
 
 buildGoModule rec {
   pname = "gomuks";
@@ -15,6 +15,8 @@ buildGoModule rec {
 
   modSha256 = "03vbrh50pvx71rp6c23qc2sh0ir4jm1wl0gvi3z1c14ndzhsqky4";
 
+  buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
+
   meta = with stdenv.lib; {
     homepage = "https://maunium.net/go/gomuks/";
     description = "A terminal based Matrix client written in Go";