mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
26 lines
626 B
Nix
26 lines
626 B
Nix
{ lib, buildGoModule, fetchFromGitHub, ... }:
|
|
|
|
buildGoModule rec {
|
|
pname = "helmsman";
|
|
version = "3.16.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Praqma";
|
|
repo = "helmsman";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-84Lxix2UFEW9XymKMxFaAwZfPepPn4MjKaz8jXfB9AI=";
|
|
};
|
|
|
|
vendorHash = "sha256-dzzgHda1kW2V9u9x/A9oYhpvTpUDa2DVZA/sHrieiWo=";
|
|
|
|
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;
|
|
};
|
|
}
|