summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/cluster/linkerd
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-03-21 05:39:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-03-21 05:39:00 -0500
commit55fa7fd5856ab36332b0cc2d46e367a73b447fe8 (patch)
treecfb6c74f6299e740eec2f2a409eb33ce7f3b8def /pkgs/applications/networking/cluster/linkerd
parente52210e014d1dbc0d4b4052308818085904cfabb (diff)
linkerd: fix build on darwin
Diffstat (limited to 'pkgs/applications/networking/cluster/linkerd')
-rw-r--r--pkgs/applications/networking/cluster/linkerd/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/networking/cluster/linkerd/default.nix b/pkgs/applications/networking/cluster/linkerd/default.nix
index 8c0265d14914..d52b25c2e015 100644
--- a/pkgs/applications/networking/cluster/linkerd/default.nix
+++ b/pkgs/applications/networking/cluster/linkerd/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, buildGoModule }:
+{ stdenv, fetchFromGitHub, buildGoModule, Security }:
buildGoModule {
pname = "linkerd-unstablle";
@@ -13,6 +13,8 @@ buildGoModule {
modSha256 = "0gahhywpcj16ww4l8s3wjwvavq24fpy258snhyf94ipy6lb797sl";
+ buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
+
subPackages = [ "cli/cmd" ];
meta = with stdenv.lib; {