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

37 lines
955 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";
2020-08-02 02:54:08 +00:00
version = "0.125.1";
2018-05-22 16:38:05 +00:00
src = fetchFromGitHub {
owner = "roboll";
repo = "helmfile";
rev = "v${version}";
2020-08-02 02:54:08 +00:00
sha256 = "0ym9q1rww3r54czkrckdd1ahlym6n61l2563nmj48hkn5d4qxqbm";
2018-05-22 16:38:05 +00:00
};
2020-08-02 02:54:08 +00:00
vendorSha256 = "04mga3jc2c01daygjcn245mv30lc2ibax0mpb1wjk3s8lkl4cxcz";
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
}