2018-06-16 13:38:50 +01:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub, makeWrapper, kubernetes-helm, ... }:
|
2018-05-22 17:38:05 +01:00
|
|
|
|
2019-05-23 11:21:12 +01:00
|
|
|
let version = "0.64.1"; in
|
2018-05-22 17:38:05 +01:00
|
|
|
|
|
|
|
buildGoPackage {
|
|
|
|
name = "helmfile-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "roboll";
|
|
|
|
repo = "helmfile";
|
|
|
|
rev = "v${version}";
|
2019-05-23 11:21:12 +01:00
|
|
|
sha256 = "1258c545fv4mcrzaw3z5gxl264fcahigaijgkjd4igh4pl0z0wxk";
|
2018-05-22 17:38:05 +01:00
|
|
|
};
|
|
|
|
|
2019-05-23 11:21:12 +01:00
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
2018-05-22 17:38:05 +01:00
|
|
|
goPackagePath = "github.com/roboll/helmfile";
|
|
|
|
|
2018-06-16 13:38:50 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
2018-10-09 09:41:13 +01:00
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=
|
|
|
|
-X main.Version=${version}
|
|
|
|
'';
|
|
|
|
|
2018-06-16 13:38:50 +01:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $bin/bin/helmfile \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ kubernetes-helm ]}
|
|
|
|
'';
|
|
|
|
|
2018-05-22 17:38:05 +01:00
|
|
|
meta = {
|
|
|
|
description = "Deploy Kubernetes Helm charts";
|
|
|
|
homepage = https://github.com/roboll/helmfile;
|
|
|
|
license = lib.licenses.mit;
|
2019-05-23 11:21:12 +01:00
|
|
|
maintainers = with lib.maintainers; [ pneumaticat yurrriq ];
|
2018-05-22 17:38:05 +01:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
};
|
|
|
|
}
|