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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
627 B
Nix
Raw Normal View History

2020-04-28 23:01:54 +00:00
{ lib, buildGoModule, fetchFromGitHub, ... }:
buildGoModule rec {
pname = "helmsman";
2022-02-12 00:05:26 +00:00
version = "3.8.1";
2020-04-28 23:01:54 +00:00
src = fetchFromGitHub {
owner = "Praqma";
repo = "helmsman";
rev = "v${version}";
2022-02-12 00:05:26 +00:00
sha256 = "sha256-njo5LlowlgWFK5G2lpgi7hdxtnSs8f5cT0oHI7bJxNc=";
2020-04-28 23:01:54 +00:00
};
2022-01-31 18:44:34 +00:00
vendorSha256 = "sha256-F+b4EXAxa4+O6yepx+9eRrdq294ZcQ+sODFUCKYpSuo=";
2020-04-28 23:01:54 +00:00
doCheck = false;
2020-04-28 23:01:54 +00:00
meta = with lib; {
description = "Helm Charts (k8s applications) as Code tool";
homepage = "https://github.com/Praqma/helmsman";
license = licenses.mit;
maintainers = with maintainers; [ lynty ];
platforms = platforms.unix;
};
}