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

30 lines
747 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-05-22 17:38:05 +01:00
2020-06-27 10:20:00 +01:00
buildGoModule rec {
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=";
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
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";
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
}