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-01-19 00:12:46 +00:00
version = "3.6.3";
2020-04-29 00:01:54 +01:00
src = fetchFromGitHub {
owner = "Praqma";
repo = "helmsman";
rev = "v${version}";
2021-01-19 00:12:46 +00:00
sha256 = "sha256-CvepOpAI40eTS5p5gjtbzahn0tX/z4CId1DDqlaMSMw=";
2020-04-29 00:01:54 +01:00
};
2021-01-19 00:12:46 +00:00
vendorSha256 = "sha256-VRNQ6TsjM0IgnSyZRzAaf7DO6TZx5KrAWNqq+wuvmhE=";
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;
};
}