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

43 lines
1.3 KiB
Nix
Raw Normal View History

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