2020-03-27 07:33:21 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, tree }:
|
2018-07-26 03:56:44 +01:00
|
|
|
|
2019-07-06 08:41:41 +01:00
|
|
|
buildGoModule rec {
|
2019-08-02 07:24:32 +01:00
|
|
|
pname = "kustomize";
|
2019-10-20 17:50:27 +01:00
|
|
|
version = "3.3.1";
|
|
|
|
# rev is the 3.3.1 commit, mainly for kustomize version command output
|
|
|
|
rev = "f2ac5a2d0df13c047fb20cbc12ef1a3b41ce2dad";
|
2018-07-26 03:56:44 +01:00
|
|
|
|
2019-10-20 17:50:27 +01:00
|
|
|
buildFlagsArray = let t = "sigs.k8s.io/kustomize/v3/provenance"; in ''
|
2018-09-28 18:58:56 +01:00
|
|
|
-ldflags=
|
2019-10-20 17:50:27 +01:00
|
|
|
-s -X ${t}.version=${version}
|
2018-09-28 18:58:56 +01:00
|
|
|
-X ${t}.gitCommit=${rev}
|
2019-02-15 08:51:34 +00:00
|
|
|
-X ${t}.buildDate=unknown
|
2018-09-28 18:58:56 +01:00
|
|
|
'';
|
2018-07-26 03:56:44 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kubernetes-sigs";
|
2019-10-20 17:50:27 +01:00
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0yxxz0b56r18w178y32s619zy8ci6l93c6vlzx11hhxhbw43f6v6";
|
2018-07-26 03:56:44 +01:00
|
|
|
};
|
|
|
|
|
2019-10-20 17:50:27 +01:00
|
|
|
# avoid finding test and development commands
|
|
|
|
sourceRoot = "source/kustomize";
|
|
|
|
|
2020-05-01 02:59:00 +01:00
|
|
|
vendorSha256 = "06mf5zvxn10g5rqjpqv3afvhj9xmijbj8ag8pqcg1996s4rp4p7a";
|
2019-07-06 08:41:41 +01:00
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
meta = with lib; {
|
2018-07-26 03:56:44 +01: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 02:11:51 +01:00
|
|
|
homepage = "https://github.com/kubernetes-sigs/kustomize";
|
2018-07-26 03:56:44 +01:00
|
|
|
license = licenses.asl20;
|
2019-02-15 08:47:35 +00:00
|
|
|
maintainers = with maintainers; [ carlosdagos vdemeester periklis zaninime ];
|
2018-07-26 03:56:44 +01:00
|
|
|
};
|
2020-05-01 02:59:00 +01:00
|
|
|
}
|