26 lines
629 B
Nix
26 lines
629 B
Nix
{ lib, buildGoModule, fetchFromGitHub, ... }:
|
|
|
|
buildGoModule rec {
|
|
pname = "helmsman";
|
|
version = "3.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Praqma";
|
|
repo = "helmsman";
|
|
rev = "v${version}";
|
|
sha256 = "0a9f6745f17sws7fyhz0d8wnriv69d6nrci9j5nhysnzg97ky1np";
|
|
};
|
|
|
|
vendorSha256 = "04csmw5zpansb30amr3i6vlwxc3z38q4g69cklh44cr37glm04sm";
|
|
|
|
doCheck = false;
|
|
|
|
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;
|
|
};
|
|
}
|