helmfile: fix build on darwin

This commit is contained in:
Mario Rodas 2020-03-21 06:00:00 -05:00
parent 7a84da8ac8
commit 622494d85d
2 changed files with 13 additions and 13 deletions

View File

@ -1,10 +1,8 @@
{ lib, buildGoModule, fetchFromGitHub, makeWrapper, kubernetes-helm, ... }:
{ stdenv, buildGoModule, fetchFromGitHub, makeWrapper, kubernetes-helm, Security }:
let version = "0.102.0"; in
buildGoModule {
buildGoModule rec {
pname = "helmfile";
inherit version;
version = "0.102.0";
src = fetchFromGitHub {
owner = "roboll";
@ -13,12 +11,12 @@ buildGoModule {
sha256 = "0v7mhsnhswiqd62wrmkcpzsg9nfi6wvkh9danngs5rqjiz1zffhy";
};
goPackagePath = "github.com/roboll/helmfile";
modSha256 = "0s7j7jbgr8gdc0s9dnl6zjwkpywqj05xyb7mkcank54kgrz0g5vq";
nativeBuildInputs = [ makeWrapper ];
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
buildFlagsArray = ''
-ldflags=
-X main.Version=${version}
@ -26,14 +24,14 @@ buildGoModule {
postInstall = ''
wrapProgram $out/bin/helmfile \
--prefix PATH : ${lib.makeBinPath [ kubernetes-helm ]}
--prefix PATH : ${stdenv.lib.makeBinPath [ kubernetes-helm ]}
'';
meta = {
meta = with stdenv.lib; {
description = "Deploy Kubernetes Helm charts";
homepage = "https://github.com/roboll/helmfile";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pneumaticat yurrriq ];
platforms = lib.platforms.unix;
license = licenses.mit;
maintainers = with maintainers; [ pneumaticat yurrriq ];
platforms = platforms.unix;
};
}

View File

@ -25323,7 +25323,9 @@ in
stdenv = gcc8Stdenv;
};
helmfile = callPackage ../applications/networking/cluster/helmfile { };
helmfile = callPackage ../applications/networking/cluster/helmfile {
inherit (darwin.apple_sdk.frameworks) Security;
};
heptio-ark = callPackage ../applications/networking/cluster/heptio-ark { };