61 lines
1.4 KiB
Nix
61 lines
1.4 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildGoModule,
|
||
|
fetchFromGitHub,
|
||
|
installShellFiles,
|
||
|
testers,
|
||
|
ytt,
|
||
|
}:
|
||
|
buildGoModule rec {
|
||
|
pname = "ytt";
|
||
|
version = "0.51.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "carvel-dev";
|
||
|
repo = "ytt";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-7PN6ejI7Ov0O3oJW71P3s3RWeRrX6M4+GTqsVlr8+7w=";
|
||
|
};
|
||
|
|
||
|
vendorHash = null;
|
||
|
|
||
|
nativeBuildInputs = [ installShellFiles ];
|
||
|
|
||
|
ldflags = [
|
||
|
"-s"
|
||
|
"-w"
|
||
|
"-X carvel.dev/ytt/pkg/version.Version=${version}"
|
||
|
];
|
||
|
|
||
|
postInstall = ''
|
||
|
installShellCompletion --cmd ytt \
|
||
|
--bash <($out/bin/ytt completion bash) \
|
||
|
--fish <($out/bin/ytt completion fish) \
|
||
|
--zsh <($out/bin/ytt completion zsh)
|
||
|
'';
|
||
|
|
||
|
# Once `__structuredArgs` is introduced, integrate checks and
|
||
|
# set some regexes `checkFlags = [ "-skip=TestDataValues.*" ]`
|
||
|
# etc. So far we dont test because passing '*' chars through the Go builder
|
||
|
# is flawed.
|
||
|
doCheck = false;
|
||
|
|
||
|
passthru.tests.version = testers.testVersion {
|
||
|
package = ytt;
|
||
|
command = "ytt --version";
|
||
|
inherit version;
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "YAML templating tool that allows configuration of complex software via reusable templates with user-provided values";
|
||
|
mainProgram = "ytt";
|
||
|
homepage = "https://get-ytt.io";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [
|
||
|
brodes
|
||
|
techknowlogick
|
||
|
gabyx
|
||
|
];
|
||
|
};
|
||
|
}
|