k9s: fix build on darwin

This commit is contained in:
Mario Rodas 2020-03-21 05:31:00 -05:00
parent a39d49e990
commit c47833f379
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, buildGoModule, fetchFromGitHub }:
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
buildGoModule rec {
pname = "k9s";
@ -22,6 +22,8 @@ buildGoModule rec {
modSha256 = "06m4xgl29zx6zpqx630m9cm52wmljms9cvly5f4pqdb4zicq7n86";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
meta = with stdenv.lib; {
description = "Kubernetes CLI To Manage Your Clusters In Style.";
homepage = "https://github.com/derailed/k9s";

View File

@ -20302,7 +20302,9 @@ in
kubeless = callPackage ../applications/networking/cluster/kubeless { };
k9s = callPackage ../applications/networking/cluster/k9s { };
k9s = callPackage ../applications/networking/cluster/k9s {
inherit (darwin.apple_sdk.frameworks) Security;
};
fluxctl = callPackage ../applications/networking/cluster/fluxctl {
inherit (darwin.apple_sdk.frameworks) Security;