2020-07-08 08:56:05 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2018-07-26 02:56:44 +00:00
|
|
|
|
2019-07-06 07:41:41 +00:00
|
|
|
buildGoModule rec {
|
2019-08-02 06:24:32 +00:00
|
|
|
pname = "kustomize";
|
2022-03-27 02:36:32 +00:00
|
|
|
version = "4.5.3";
|
2021-03-09 08:54:53 +00:00
|
|
|
# rev is the commit of the tag, mainly for kustomize version command output
|
2021-12-07 09:33:01 +00:00
|
|
|
rev = "b2d65ddc98e09187a8e38adc27c30bab078c1dbf";
|
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=${rev}"
|
|
|
|
];
|
2018-07-26 02:56:44 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kubernetes-sigs";
|
2019-10-20 16:50:27 +00:00
|
|
|
repo = pname;
|
2020-07-08 08:56:05 +00:00
|
|
|
rev = "kustomize/v${version}";
|
2022-03-27 02:36:32 +00:00
|
|
|
sha256 = "sha256-sy429uTTYvjnweZlsuolBamcggRXmaR8uxD043GUIQE=";
|
2018-07-26 02:56:44 +00:00
|
|
|
};
|
|
|
|
|
2021-12-07 09:33:01 +00:00
|
|
|
doCheck = true;
|
2021-03-09 08:54:53 +00:00
|
|
|
|
2019-10-20 16:50:27 +00:00
|
|
|
# avoid finding test and development commands
|
|
|
|
sourceRoot = "source/kustomize";
|
|
|
|
|
2022-03-27 02:36:32 +00:00
|
|
|
vendorSha256 = "sha256-5kMMSr+YyuoASgW+qzkyO4CcDHFFANcsAZTUqHX5nGk=";
|
2019-07-06 07:41:41 +00:00
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
meta = with lib; {
|
2018-07-26 02:56:44 +00:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/kubernetes-sigs/kustomize";
|
2018-07-26 02:56:44 +00:00
|
|
|
license = licenses.asl20;
|
2021-02-10 08:19:03 +00:00
|
|
|
maintainers = with maintainers; [ carlosdagos vdemeester periklis zaninime Chili-Man saschagrunert ];
|
2018-07-26 02:56:44 +00:00
|
|
|
};
|
2020-07-08 08:56:05 +00:00
|
|
|
}
|