1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/networking/cluster/helmfile/default.nix

39 lines
891 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub, makeWrapper, kubernetes-helm, ... }:
2018-05-22 17:38:05 +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}";
sha256 = "1258c545fv4mcrzaw3z5gxl264fcahigaijgkjd4igh4pl0z0wxk";
2018-05-22 17:38:05 +01:00
};
goDeps = ./deps.nix;
2018-05-22 17:38:05 +01:00
goPackagePath = "github.com/roboll/helmfile";
nativeBuildInputs = [ makeWrapper ];
2018-10-09 09:41:13 +01:00
buildFlagsArray = ''
-ldflags=
-X main.Version=${version}
'';
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;
maintainers = with lib.maintainers; [ pneumaticat yurrriq ];
2018-05-22 17:38:05 +01:00
platforms = lib.platforms.unix;
};
}