1
0
Fork 1
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:
Mario Rodas 2020-03-21 06:02:00 -05:00
parent 37087c1550
commit 771cf05ac6
2 changed files with 7 additions and 3 deletions

View file

@ -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;

View file

@ -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 { };