anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / networking / cluster / helm / plugins / helm-cm-push.nix
bloba5a2f7566b46f77488c476eec65074a24ad48163
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "helm-cm-push";
8   version = "0.10.4";
10   src = fetchFromGitHub {
11     owner = "chartmuseum";
12     repo = "helm-push";
13     rev = "v${version}";
14     hash = "sha256-YnhI1/BDk9swr3YFm5ajGf4LLgPty7blA2tlsMH0erY=";
15   };
17   vendorHash = "sha256-7bUDKqkvBV1Upcrj4DQnVCP74QtKlSwF0Kl2sPFZpjc=";
19   subPackage = [ "cmd/helm-cm-push" ];
21   # Remove hooks.
22   postPatch = ''
23     sed -e '/^hooks:/,+2 d' -i plugin.yaml
24   '';
26   CGO_ENABLED = 0;
28   ldflags = [ "-s" "-w" ];
30   postInstall = ''
31     install -Dm644 plugin.yaml $out/helm-cm-push/plugin.yaml
32     mv $out/bin $out/helm-cm-push
33   '';
35   # Tests require the ChartMuseum service.
36   doCheck = false;
38   meta = with lib; {
39     description = "Helm plugin to push chart package to ChartMuseum";
40     homepage = "https://github.com/chartmuseum/helm-push";
41     license = licenses.asl20;
42     maintainers = with maintainers; [ azahi ];
43   };