nixpkgs/pkgs/applications/networking/cluster/helmsman/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
626 B
Nix
Raw Normal View History

2020-04-28 23:01:54 +00:00
{ lib, buildGoModule, fetchFromGitHub, ... }:
buildGoModule rec {
pname = "helmsman";
2023-01-12 13:33:11 +00:00
version = "3.16.0";
2020-04-28 23:01:54 +00:00
src = fetchFromGitHub {
owner = "Praqma";
repo = "helmsman";
rev = "v${version}";
2023-01-12 13:33:11 +00:00
sha256 = "sha256-84Lxix2UFEW9XymKMxFaAwZfPepPn4MjKaz8jXfB9AI=";
2020-04-28 23:01:54 +00:00
};
2023-01-12 13:33:11 +00:00
vendorHash = "sha256-dzzgHda1kW2V9u9x/A9oYhpvTpUDa2DVZA/sHrieiWo=";
2020-04-28 23:01:54 +00:00
doCheck = false;
2020-04-28 23:01:54 +00: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;
};
}