nixpkgs/pkgs/development/tools/kustomize/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2018-07-26 02:56:44 +00:00
2019-07-06 07:41:41 +00:00
buildGoModule rec {
pname = "kustomize";
2024-04-29 05:23:58 +00:00
version = "5.4.1";
2018-07-26 02:56:44 +00:00
2021-08-26 06:45:51 +00:00
ldflags = let t = "sigs.k8s.io/kustomize/api/provenance"; in
[
"-s"
"-X ${t}.version=${version}"
"-X ${t}.gitCommit=${src.rev}"
2021-08-26 06:45:51 +00:00
];
2018-07-26 02:56:44 +00:00
src = fetchFromGitHub {
owner = "kubernetes-sigs";
2019-10-20 16:50:27 +00:00
repo = pname;
rev = "kustomize/v${version}";
2024-04-29 05:23:58 +00:00
hash = "sha256-zt+/CKIIaZxfjfMu9L4/bDc5MmaqeEp3MI/m++GQoEc=";
2018-07-26 02:56:44 +00:00
};
2019-10-20 16:50:27 +00:00
# avoid finding test and development commands
modRoot = "kustomize";
2023-03-31 13:47:29 +00:00
proxyVendor = true;
2024-04-29 05:23:58 +00:00
vendorHash = "sha256-YxkZ2YlkvMihTYi34lfwpUrmGa4LrrWsP2cpJZY/41A=";
2019-07-06 07:41:41 +00:00
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; {
2018-07-26 02:56:44 +00:00
description = "Customization of kubernetes YAML configurations";
mainProgram = "kustomize";
2018-07-26 02:56:44 +00:00
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";
2018-07-26 02:56:44 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ carlosdagos vdemeester periklis zaninime Chili-Man saschagrunert ];
2018-07-26 02:56:44 +00:00
};
}