2020-07-08 10:56:05 +02:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2018-07-26 04:56:44 +02:00
|
|
|
|
2019-07-06 09:41:41 +02:00
|
|
|
buildGoModule rec {
|
2019-08-02 08:24:32 +02:00
|
|
|
pname = "kustomize";
|
2021-08-25 09:22:14 +02:00
|
|
|
version = "4.3.0";
|
2021-03-09 09:54:53 +01:00
|
|
|
# rev is the commit of the tag, mainly for kustomize version command output
|
|
|
|
rev = "9e8e7a7fe99ec9fbf801463e8607928322fc5245";
|
2018-07-26 04:56:44 +02:00
|
|
|
|
2021-08-26 08:45:51 +02:00
|
|
|
ldflags = let t = "sigs.k8s.io/kustomize/api/provenance"; in
|
|
|
|
[
|
|
|
|
"-s"
|
|
|
|
"-X ${t}.version=${version}"
|
|
|
|
"-X ${t}.gitCommit=${rev}"
|
|
|
|
];
|
2018-07-26 04:56:44 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kubernetes-sigs";
|
2019-10-20 18:50:27 +02:00
|
|
|
repo = pname;
|
2020-07-08 10:56:05 +02:00
|
|
|
rev = "kustomize/v${version}";
|
2021-08-25 09:22:14 +02:00
|
|
|
sha256 = "sha256-Oo29/H1rWKOMNBIa8N/ih2Bfmclsn/kqv3il6c2muoQ=";
|
2018-07-26 04:56:44 +02:00
|
|
|
};
|
|
|
|
|
2021-03-09 09:54:53 +01:00
|
|
|
# TODO: Remove once https://github.com/kubernetes-sigs/kustomize/pull/3708 got merged.
|
|
|
|
doCheck = false;
|
|
|
|
|
2019-10-20 18:50:27 +02:00
|
|
|
# avoid finding test and development commands
|
|
|
|
sourceRoot = "source/kustomize";
|
|
|
|
|
2021-08-25 09:22:14 +02:00
|
|
|
vendorSha256 = "sha256-oX+6cc5EO2RqK2O212iaW/6CMFCNdYzTpAaqDTFqX1A=";
|
2019-07-06 09:41:41 +02:00
|
|
|
|
2020-03-27 08:33:21 +01:00
|
|
|
meta = with lib; {
|
2018-07-26 04:56:44 +02: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 03:11:51 +02:00
|
|
|
homepage = "https://github.com/kubernetes-sigs/kustomize";
|
2018-07-26 04:56:44 +02:00
|
|
|
license = licenses.asl20;
|
2021-02-10 09:19:03 +01:00
|
|
|
maintainers = with maintainers; [ carlosdagos vdemeester periklis zaninime Chili-Man saschagrunert ];
|
2018-07-26 04:56:44 +02:00
|
|
|
};
|
2020-07-08 10:56:05 +02:00
|
|
|
}
|