summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pkgs/applications/networking/cluster/linkerd/default.nix4
-rw-r--r--pkgs/top-level/all-packages.nix4
2 files changed, 6 insertions, 2 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; {
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index bedd21d2dd48..719b78825394 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -20322,7 +20322,9 @@ in
inherit (darwin.apple_sdk.frameworks) Security;
};
- linkerd = callPackage ../applications/networking/cluster/linkerd { };
+ linkerd = callPackage ../applications/networking/cluster/linkerd {
+ inherit (darwin.apple_sdk.frameworks) Security;
+ };
kubernetes-helm = callPackage ../applications/networking/cluster/helm {
inherit (darwin.apple_sdk.frameworks) Security;