nixpkgs/pkgs/development/tools/kustomize/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-07-26 02:56:44 +00:00
2019-07-06 07:41:41 +00:00
buildGoModule rec {
pname = "kustomize";
2022-03-27 02:36:32 +00:00
version = "4.5.3";
# 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;
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;
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
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.
'';
homepage = "https://github.com/kubernetes-sigs/kustomize";
2018-07-26 02:56:44 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ carlosdagos vdemeester periklis zaninime Chili-Man saschagrunert ];
2018-07-26 02:56:44 +00:00
};
}