kustomize_3: init at 3.10.0

This commit is contained in:
Tristan Gosselin-Hane 2021-06-29 21:54:15 -04:00
parent fa0a222632
commit d0f4bb9cf8
No known key found for this signature in database
GPG key ID: 86886FC44C72EAA1
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,40 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kustomize_3";
version = "3.10.0";
# rev is the commit of the tag, mainly for kustomize version command output
rev = "602ad8aa98e2e17f6c9119e027a09757e63c8bec";
ldflags = let t = "sigs.k8s.io/kustomize/api/provenance"; in [
"-s -w"
"-X ${t}.version=${version}"
"-X ${t}.gitCommit=${rev}"
];
src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = "kustomize";
rev = "kustomize/v${version}";
sha256 = "sha256-ESIykbAKXdv8zM9be0zEJ71rBAzZby0aTg25NlCsIOM=";
};
doCheck = true;
# avoid finding test and development commands
sourceRoot = "source/kustomize";
vendorSha256 = "sha256-xLeetcmzvpILLLMhMx7oahWLxguFjG3qbYpeeWpFUlw=";
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 zaninime Chili-Man saschagrunert ];
};
}

View file

@ -13718,6 +13718,8 @@ in
kustomize = callPackage ../development/tools/kustomize { };
kustomize_3 = callPackage ../development/tools/kustomize/3.nix { };
kustomize-sops = callPackage ../development/tools/kustomize/kustomize-sops.nix { };
ktlint = callPackage ../development/tools/ktlint { };