mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
627 B
Nix
26 lines
627 B
Nix
{ lib, buildGoModule, fetchFromGitHub, ... }:
|
|
|
|
buildGoModule rec {
|
|
pname = "helmsman";
|
|
version = "3.7.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Praqma";
|
|
repo = "helmsman";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-duNkvRMq3CKAGDDsrDWKydFZRt6fxuO0uP2Ff3HA+ek=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-4imZrZfpR/5tw9ZFSTr7Gx4G9O1iHNE9YRYMOJFKvHU=";
|
|
|
|
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;
|
|
};
|
|
}
|