fa9a1e0bd4
No nixpkgs activity in the past year. Has not responded in issues they were pinged in for two years, per Aleksanaa (I have not verified this myself): https://github.com/NixOS/nixpkgs/issues?q=sort%3Acreated-desc%20is%3Aissue%20involves%3Aperiklis. I also removed "with lib;" from meta where I saw it.
65 lines
1.6 KiB
Nix
65 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
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 = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd kustomize \
|
|
--bash <($out/bin/kustomize completion bash) \
|
|
--fish <($out/bin/kustomize completion fish) \
|
|
--zsh <($out/bin/kustomize completion zsh)
|
|
'';
|
|
|
|
meta = {
|
|
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 = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [
|
|
carlosdagos
|
|
vdemeester
|
|
zaninime
|
|
Chili-Man
|
|
saschagrunert
|
|
];
|
|
};
|
|
}
|