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