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-12-30 15:30:59 +00:00
version = "3.8.0";
2020-04-29 00:01:54 +01:00
src = fetchFromGitHub {
owner = "Praqma";
repo = "helmsman";
rev = "v${version}";
2021-12-30 15:30:59 +00:00
sha256 = "sha256-KZrv447Yz4WxtkmQkGLsnZC0ok0rWCM2Fs+m8LVTGfM=";
2020-04-29 00:01:54 +01:00
};
2021-09-23 00:24:47 +01:00
vendorSha256 = "sha256-4imZrZfpR/5tw9ZFSTr7Gx4G9O1iHNE9YRYMOJFKvHU=";
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;
};
}