nixpkgs/pkgs/applications/networking/cluster/helmfile/default.nix

37 lines
953 B
Nix
Raw Normal View History

2020-06-27 02:20:00 -07:00
{ lib, buildGoModule, fetchFromGitHub, makeWrapper, kubernetes-helm }:
2018-05-22 09:38:05 -07:00
2020-06-27 02:20:00 -07:00
buildGoModule rec {
pname = "helmfile";
2021-05-18 23:38:06 -07:00
version = "0.139.6";
2018-05-22 09:38:05 -07:00
src = fetchFromGitHub {
owner = "roboll";
repo = "helmfile";
rev = "v${version}";
2021-05-18 23:38:06 -07:00
sha256 = "sha256-pAo8MmQqqSICB4rguhkGHJqyB9fBBzpp7NEaa59rVb4=";
2018-05-22 09:38:05 -07:00
};
2021-05-10 21:52:09 -07:00
vendorSha256 = "sha256-Hs09CT/KSwYL2AKLseOjWB5Xvvr5TvbzwDywsGQ9kMw=";
doCheck = false;
nativeBuildInputs = [ makeWrapper ];
2020-06-27 02:20:00 -07:00
subPackages = [ "." ];
buildFlagsArray = [ "-ldflags=-s -w -X github.com/roboll/helmfile/pkg/app/version.Version=${version}" ];
2018-10-09 01:41:13 -07:00
postInstall = ''
wrapProgram $out/bin/helmfile \
--prefix PATH : ${lib.makeBinPath [ kubernetes-helm ]}
'';
meta = {
2018-05-22 09:38:05 -07:00
description = "Deploy Kubernetes Helm charts";
2020-03-13 23:33:28 -07:00
homepage = "https://github.com/roboll/helmfile";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pneumaticat yurrriq ];
platforms = lib.platforms.unix;
2018-05-22 09:38:05 -07:00
};
2020-06-27 02:20:00 -07:00
}