mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
qbec: fix build on darwin
This commit is contained in:
parent
37087c1550
commit
771cf05ac6
|
@ -1,4 +1,4 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "qbec";
|
||||
|
@ -13,7 +13,9 @@ buildGoModule rec {
|
|||
|
||||
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";
|
||||
homepage = "https://github.com/splunk/qbec";
|
||||
license = licenses.asl20;
|
||||
|
|
|
@ -20950,7 +20950,9 @@ in
|
|||
|
||||
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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue