69 lines
1.7 KiB
Nix
69 lines
1.7 KiB
Nix
{
|
|
buildGoModule,
|
|
buildPackages,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
lib,
|
|
stdenv,
|
|
versionCheckHook,
|
|
}:
|
|
buildGoModule (finalAttrs: {
|
|
pname = "nelm";
|
|
version = "1.12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "werf";
|
|
repo = "nelm";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-HooW+nwjh8kNh9XwB3+/wt9hzhRnwRDSOh6YKucus+Q=";
|
|
};
|
|
|
|
vendorHash = "sha256-53pIUVbGXU1GGFZtUtjSOufCbvHEPUltZd52eZEGSio=";
|
|
|
|
subPackages = [ "cmd/nelm" ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/werf/nelm/internal/common.Brand=Nelm"
|
|
"-X github.com/werf/nelm/internal/common.Version=${finalAttrs.version}"
|
|
];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
preCheck = ''
|
|
# Test all packages.
|
|
unset subPackages
|
|
'';
|
|
|
|
postInstall = lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) (
|
|
let
|
|
emulator = stdenv.hostPlatform.emulator buildPackages;
|
|
in
|
|
''
|
|
for shell in bash fish zsh; do
|
|
installShellCompletion \
|
|
--cmd nelm \
|
|
--$shell <(${emulator} $out/bin/nelm completion $shell)
|
|
done
|
|
''
|
|
);
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
doInstallCheck = true;
|
|
versionCheckProgramArg = "version";
|
|
|
|
meta = {
|
|
description = "Kubernetes deployment tool, alternative to Helm 3";
|
|
longDescription = ''
|
|
Nelm is a Helm 3 alternative. It is a Kubernetes deployment tool that
|
|
manages Helm Charts and deploys them to Kubernetes.
|
|
'';
|
|
homepage = "https://github.com/werf/nelm";
|
|
changelog = "https://github.com/werf/nelm/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.azahi ];
|
|
mainProgram = "nelm";
|
|
};
|
|
})
|