about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-03-21 05:02:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-03-21 05:02:00 -0500
commitc8359c42e0d4996aa63f909c75aab118212fb205 (patch)
treeaae2ec2c1205ce11b37711b9f32503a17715787b /pkgs/applications/networking
parentda93b5a367ecd08d56a38b8d66ff24fca5112c32 (diff)
downloadnixlib-c8359c42e0d4996aa63f909c75aab118212fb205.tar
nixlib-c8359c42e0d4996aa63f909c75aab118212fb205.tar.gz
nixlib-c8359c42e0d4996aa63f909c75aab118212fb205.tar.bz2
nixlib-c8359c42e0d4996aa63f909c75aab118212fb205.tar.lz
nixlib-c8359c42e0d4996aa63f909c75aab118212fb205.tar.xz
nixlib-c8359c42e0d4996aa63f909c75aab118212fb205.tar.zst
nixlib-c8359c42e0d4996aa63f909c75aab118212fb205.zip
fluxctl: fix build on darwin
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/cluster/fluxctl/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/networking/cluster/fluxctl/default.nix b/pkgs/applications/networking/cluster/fluxctl/default.nix
index 982add3d517f..75e097131ea8 100644
--- a/pkgs/applications/networking/cluster/fluxctl/default.nix
+++ b/pkgs/applications/networking/cluster/fluxctl/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildGoModule, fetchFromGitHub }:
+{ stdenv, buildGoModule, fetchFromGitHub, Security }:
 
 buildGoModule rec {
   pname = "fluxctl";
@@ -13,6 +13,8 @@ buildGoModule rec {
 
   modSha256 = "0ij5q31a0818nmqsdql1ii6rhq6nb0liplnw509qih8py7dk5xkg";
 
+  buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
+
   subPackages = [ "cmd/fluxctl" ];
 
   meta = with stdenv.lib; {