mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 09:44:18 +00:00
Merge pull request #255225 from abscondment/kustomize_4
kustomize_4: init at 4.5.7
This commit is contained in:
commit
58ef48dd33
48
pkgs/development/tools/kustomize/4.nix
Normal file
48
pkgs/development/tools/kustomize/4.nix
Normal file
@ -0,0 +1,48 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kustomize_4";
|
||||
version = "4.5.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kubernetes-sigs";
|
||||
repo = "kustomize";
|
||||
rev = "kustomize/v${version}";
|
||||
hash = "sha256-AHDUwXcYkI04nOBY8jScf+OE6k9Z5OqzhtWExK1rrKg=";
|
||||
};
|
||||
|
||||
# rev is the commit of the tag, mainly for kustomize version command output
|
||||
rev = "56d82a8378dfc8dc3b3b1085e5a6e67b82966bd7";
|
||||
ldflags = let t = "sigs.k8s.io/kustomize/api/provenance"; in
|
||||
[
|
||||
"-s"
|
||||
"-X ${t}.version=${version}"
|
||||
"-X ${t}.gitCommit=${rev}"
|
||||
];
|
||||
|
||||
# avoid finding test and development commands
|
||||
modRoot = "kustomize";
|
||||
proxyVendor = true;
|
||||
vendorHash = "sha256-9+k0Me5alZDNC27Mx0Q6vp0B2SEa+Qy0FoLSr/Rahkc=";
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -19548,6 +19548,8 @@ with pkgs;
|
||||
|
||||
kustomize_3 = callPackage ../development/tools/kustomize/3.nix { };
|
||||
|
||||
kustomize_4 = callPackage ../development/tools/kustomize/4.nix { };
|
||||
|
||||
kustomize-sops = callPackage ../development/tools/kustomize/kustomize-sops.nix { };
|
||||
|
||||
ktlint = callPackage ../development/tools/ktlint { };
|
||||
|
Loading…
Reference in New Issue
Block a user