2021-11-06 03:35:28 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2018-05-22 17:38:05 +01:00
|
|
|
|
2020-06-27 10:20:00 +01:00
|
|
|
buildGoModule rec {
|
2019-06-06 23:03:33 +01:00
|
|
|
pname = "helmfile";
|
2021-10-12 19:13:55 +01:00
|
|
|
version = "0.141.0";
|
2018-05-22 17:38:05 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "roboll";
|
|
|
|
repo = "helmfile";
|
|
|
|
rev = "v${version}";
|
2021-10-12 19:13:55 +01:00
|
|
|
sha256 = "sha256-UwjV3xgnZa0Emzw4FP/+gHh1ES6MTihrrlGKUBH6O9Q=";
|
2018-05-22 17:38:05 +01:00
|
|
|
};
|
|
|
|
|
2021-09-19 08:46:48 +01:00
|
|
|
vendorSha256 = "sha256-HKHMeDnIDmQ7AjuS2lYCMphTHGD1JgQuBYDJe2+PEk4=";
|
2019-06-06 23:03:33 +01:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-06-27 10:20:00 +01:00
|
|
|
subPackages = [ "." ];
|
|
|
|
|
2021-08-26 07:45:51 +01:00
|
|
|
ldflags = [ "-s" "-w" "-X github.com/roboll/helmfile/pkg/app/version.Version=${version}" ];
|
2018-10-09 09:41:13 +01:00
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
meta = {
|
2018-05-22 17:38:05 +01:00
|
|
|
description = "Deploy Kubernetes Helm charts";
|
2020-03-14 06:33:28 +00:00
|
|
|
homepage = "https://github.com/roboll/helmfile";
|
2020-03-27 07:33:21 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ pneumaticat yurrriq ];
|
|
|
|
platforms = lib.platforms.unix;
|
2018-05-22 17:38:05 +01:00
|
|
|
};
|
2020-06-27 10:20:00 +01:00
|
|
|
}
|