Merge pull request #112628 from saschagrunert/kustomize

kustomize: 3.9.3 -> 3.10.0
This commit is contained in:
Jörg Thalheim 2021-02-10 09:45:07 +00:00 committed by GitHub
commit 938f013bd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,9 +2,9 @@
buildGoModule rec {
pname = "kustomize";
version = "3.9.3";
version = "3.10.0";
# rev is the 3.9.3 commit, mainly for kustomize version command output
rev = "1ae8303bdc9372bc7c15942df6e9cf5d67fdba1a";
rev = "602ad8aa98e2e17f6c9119e027a09757e63c8bec";
buildFlagsArray = let t = "sigs.k8s.io/kustomize/api/provenance"; in
''
@ -17,13 +17,13 @@ buildGoModule rec {
owner = "kubernetes-sigs";
repo = pname;
rev = "kustomize/v${version}";
sha256 = "147g8mhgcb8sjx10sz7r9yh84gqxwk6dald848jim2v2rax47v0p";
sha256 = "1qr0mi83df8d9qd2svyr1h26pg97qi67nnygrkydnp8an28k48hi";
};
# avoid finding test and development commands
sourceRoot = "source/kustomize";
vendorSha256 = "0ps4is8x2akvvvvin9sqdyjg4ms3b5b5y15923rs65fd7x33rxgp";
vendorSha256 = "0p2j8mm7jpladpm6v3451g38n5bax0g368dk5h5r5gmkr6srxdy4";
meta = with lib; {
description = "Customization of kubernetes YAML configurations";
@ -34,6 +34,6 @@ buildGoModule rec {
'';
homepage = "https://github.com/kubernetes-sigs/kustomize";
license = licenses.asl20;
maintainers = with maintainers; [ carlosdagos vdemeester periklis zaninime Chili-Man ];
maintainers = with maintainers; [ carlosdagos vdemeester periklis zaninime Chili-Man saschagrunert ];
};
}