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

26 lines
628 B
Nix
Raw Normal View History

2020-04-29 00:01:54 +01:00
{ lib, buildGoModule, fetchFromGitHub, ... }:
buildGoModule rec {
pname = "helmsman";
2021-05-19 07:42:09 +01:00
version = "3.6.11";
2020-04-29 00:01:54 +01:00
src = fetchFromGitHub {
owner = "Praqma";
repo = "helmsman";
rev = "v${version}";
2021-05-19 07:42:09 +01:00
sha256 = "sha256-9G/A6eADt9jP0CZC6MTZnQOmGOItJFI0zTfmC7HXSaI=";
2020-04-29 00:01:54 +01:00
};
2021-04-10 12:50:16 +01:00
vendorSha256 = "sha256-icX8mOc8g+DhfAjD1pzneLWTXY17lXyAjdPOWAxkHwI=";
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;
};
}