k9s: fix build on darwin
This commit is contained in:
parent
a39d49e990
commit
c47833f379
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "k9s";
|
pname = "k9s";
|
||||||
@ -22,6 +22,8 @@ buildGoModule rec {
|
|||||||
|
|
||||||
modSha256 = "06m4xgl29zx6zpqx630m9cm52wmljms9cvly5f4pqdb4zicq7n86";
|
modSha256 = "06m4xgl29zx6zpqx630m9cm52wmljms9cvly5f4pqdb4zicq7n86";
|
||||||
|
|
||||||
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Kubernetes CLI To Manage Your Clusters In Style.";
|
description = "Kubernetes CLI To Manage Your Clusters In Style.";
|
||||||
homepage = "https://github.com/derailed/k9s";
|
homepage = "https://github.com/derailed/k9s";
|
||||||
|
@ -20302,7 +20302,9 @@ in
|
|||||||
|
|
||||||
kubeless = callPackage ../applications/networking/cluster/kubeless { };
|
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 {
|
fluxctl = callPackage ../applications/networking/cluster/fluxctl {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
Loading…
Reference in New Issue
Block a user