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

37 lines
953 B
Nix
Raw Normal View History

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