mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kustomize";
|
|
version = "5.4.1";
|
|
|
|
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}";
|
|
hash = "sha256-zt+/CKIIaZxfjfMu9L4/bDc5MmaqeEp3MI/m++GQoEc=";
|
|
};
|
|
|
|
# avoid finding test and development commands
|
|
modRoot = "kustomize";
|
|
proxyVendor = true;
|
|
vendorHash = "sha256-YxkZ2YlkvMihTYi34lfwpUrmGa4LrrWsP2cpJZY/41A=";
|
|
|
|
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";
|
|
mainProgram = "kustomize";
|
|
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 ];
|
|
};
|
|
}
|