3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/cluster/helmsman/default.nix

26 lines
627 B
Nix
Raw Normal View History

2020-04-29 00:01:54 +01:00
{ lib, buildGoModule, fetchFromGitHub, ... }:
buildGoModule rec {
pname = "helmsman";
2021-09-14 11:36:38 +01:00
version = "3.7.3";
2020-04-29 00:01:54 +01:00
src = fetchFromGitHub {
owner = "Praqma";
repo = "helmsman";
rev = "v${version}";
2021-09-14 11:36:38 +01:00
sha256 = "sha256-7WN4YjhPbsFZfoFuZzsN85a+kdEVlEzQ9CfWh4nxxTs=";
2020-04-29 00:01:54 +01:00
};
2021-07-09 10:20:00 +01:00
vendorSha256 = "sha256-XHgdVFGIzbPPYgv/T4TtvDDbKAe3niev4S5tu/nwSqg=";
2020-04-29 00:01:54 +01:00
doCheck = false;
2020-04-29 00:01:54 +01: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;
};
}