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-05-22 06:10:24 +01:00
version = "3.7.0";
2020-04-29 00:01:54 +01:00
src = fetchFromGitHub {
owner = "Praqma";
repo = "helmsman";
rev = "v${version}";
2021-05-22 06:10:24 +01:00
sha256 = "sha256-Xp86tCIM7XVtue/MjQ8/wGs2fHfxSWS3B6MzNMYRqg4=";
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;
};
}