mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
helmsman: init at 3.3.0
This commit is contained in:
parent
9f5e9ef4b7
commit
60c0d55e09
23
pkgs/applications/networking/cluster/helmsman/default.nix
Normal file
23
pkgs/applications/networking/cluster/helmsman/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub, ... }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "helmsman";
|
||||
version = "3.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Praqma";
|
||||
repo = "helmsman";
|
||||
rev = "v${version}";
|
||||
sha256 = "0i7sg3iwxb07gjxcz6chpdcx3fqykzldmf7s1c9m02hkps910ca8";
|
||||
};
|
||||
|
||||
modSha256 = "19qdrrwmjc32nw8m0zi251z32wqj2d956wgd1dkcvx1x0n4p435g";
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -25427,6 +25427,8 @@ in
|
|||
|
||||
helmfile = callPackage ../applications/networking/cluster/helmfile { };
|
||||
|
||||
helmsman = callPackage ../applications/networking/cluster/helmsman { };
|
||||
|
||||
heptio-ark = callPackage ../applications/networking/cluster/heptio-ark { };
|
||||
|
||||
hplip = callPackage ../misc/drivers/hplip { };
|
||||
|
|
Loading…
Reference in a new issue