qbec: fix build on darwin
This commit is contained in:
parent
37087c1550
commit
771cf05ac6
2 changed files with 7 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildGoModule, fetchFromGitHub }:
|
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "qbec";
|
pname = "qbec";
|
||||||
|
@ -13,7 +13,9 @@ buildGoModule rec {
|
||||||
|
|
||||||
modSha256 = "165zqmannlylkzaz9gkmcrlyx8rfhz70ahzhiks4ycgq1qxr0av9";
|
modSha256 = "165zqmannlylkzaz9gkmcrlyx8rfhz70ahzhiks4ycgq1qxr0av9";
|
||||||
|
|
||||||
meta = with lib; {
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "Configure kubernetes objects on multiple clusters using jsonnet https://qbec.io";
|
description = "Configure kubernetes objects on multiple clusters using jsonnet https://qbec.io";
|
||||||
homepage = "https://github.com/splunk/qbec";
|
homepage = "https://github.com/splunk/qbec";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -20950,7 +20950,9 @@ in
|
||||||
|
|
||||||
ptex = callPackage ../development/libraries/ptex {};
|
ptex = callPackage ../development/libraries/ptex {};
|
||||||
|
|
||||||
qbec = callPackage ../applications/networking/cluster/qbec { };
|
qbec = callPackage ../applications/networking/cluster/qbec {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
rssguard = libsForQt5.callPackage ../applications/networking/feedreaders/rssguard { };
|
rssguard = libsForQt5.callPackage ../applications/networking/feedreaders/rssguard { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue