fluxctl: fix build on darwin
This commit is contained in:
parent
da93b5a367
commit
c8359c42e0
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "fluxctl";
|
pname = "fluxctl";
|
||||||
@ -13,6 +13,8 @@ buildGoModule rec {
|
|||||||
|
|
||||||
modSha256 = "0ij5q31a0818nmqsdql1ii6rhq6nb0liplnw509qih8py7dk5xkg";
|
modSha256 = "0ij5q31a0818nmqsdql1ii6rhq6nb0liplnw509qih8py7dk5xkg";
|
||||||
|
|
||||||
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
|
||||||
subPackages = [ "cmd/fluxctl" ];
|
subPackages = [ "cmd/fluxctl" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
@ -20271,7 +20271,9 @@ in
|
|||||||
|
|
||||||
k9s = callPackage ../applications/networking/cluster/k9s { };
|
k9s = callPackage ../applications/networking/cluster/k9s { };
|
||||||
|
|
||||||
fluxctl = callPackage ../applications/networking/cluster/fluxctl { };
|
fluxctl = callPackage ../applications/networking/cluster/fluxctl {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
linkerd = callPackage ../applications/networking/cluster/linkerd { };
|
linkerd = callPackage ../applications/networking/cluster/linkerd { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user