mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
deee095133
- install completion - use `src.rev` instead of git commit - use `modRoot` instead of `sourceRoot` - drop redundant `doCheck = true`
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kustomize";
|
|
version = "4.5.4";
|
|
|
|
ldflags = let t = "sigs.k8s.io/kustomize/api/provenance"; in
|
|
[
|
|
"-s"
|
|
"-X ${t}.version=${version}"
|
|
"-X ${t}.gitCommit=${src.rev}"
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kubernetes-sigs";
|
|
repo = pname;
|
|
rev = "kustomize/v${version}";
|
|
sha256 = "sha256-7Ode+ONgWJRNSbIpvIjhuT+oVvZgJfByFqS/iSUhcXw=";
|
|
};
|
|
|
|
# avoid finding test and development commands
|
|
modRoot = "kustomize";
|
|
|
|
vendorSha256 = "sha256-beIbeY/+k2NgotGw5zQFkYuqMKlwctoxuToZfiFlCm4=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd kustomize \
|
|
--bash <($out/bin/kustomize completion bash) \
|
|
--fish <($out/bin/kustomize completion fish) \
|
|
--zsh <($out/bin/kustomize completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Customization of kubernetes YAML configurations";
|
|
longDescription = ''
|
|
kustomize lets you customize raw, template-free YAML files for
|
|
multiple purposes, leaving the original YAML untouched and usable
|
|
as is.
|
|
'';
|
|
homepage = "https://github.com/kubernetes-sigs/kustomize";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ carlosdagos vdemeester periklis zaninime Chili-Man saschagrunert ];
|
|
};
|
|
}
|