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

43 lines
1.3 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";
2021-04-27 05:21:03 +00:00
version = "4.1.2";
# rev is the commit of the tag, mainly for kustomize version command output
rev = "9e8e7a7fe99ec9fbf801463e8607928322fc5245";
2018-07-26 02:56:44 +00:00
buildFlagsArray = let t = "sigs.k8s.io/kustomize/api/provenance"; in
''
-ldflags=
-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}";
2021-04-27 05:21:03 +00:00
sha256 = "sha256-uomtW6PPs/UHvKRbHToot6kU4YJGLJuet8vJENbwEgI=";
2018-07-26 02:56:44 +00:00
};
# TODO: Remove once https://github.com/kubernetes-sigs/kustomize/pull/3708 got merged.
doCheck = false;
2019-10-20 16:50:27 +00:00
# avoid finding test and development commands
sourceRoot = "source/kustomize";
2021-04-27 05:21:03 +00:00
vendorSha256 = "sha256-fcsjxtCojahI6ZIcaSG5ubNqlWEC6DnNHtVYwTtbSw4=";
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
};
}