linkerd: fix build on darwin

This commit is contained in:
Mario Rodas 2020-03-21 05:39:00 -05:00
parent e52210e014
commit 55fa7fd585
2 changed files with 6 additions and 2 deletions

View File

@ -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; {

View File

@ -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;