mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kustomize";
|
|
version = "4.2.0";
|
|
# rev is the commit of the tag, mainly for kustomize version command output
|
|
rev = "9e8e7a7fe99ec9fbf801463e8607928322fc5245";
|
|
|
|
buildFlagsArray = let t = "sigs.k8s.io/kustomize/api/provenance"; in
|
|
''
|
|
-ldflags=
|
|
-s -X ${t}.version=${version}
|
|
-X ${t}.gitCommit=${rev}
|
|
'';
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kubernetes-sigs";
|
|
repo = pname;
|
|
rev = "kustomize/v${version}";
|
|
sha256 = "sha256-mFF0Yc+j292oajY1i9SApnWaQnVoHxvkGCIurKC0t4o=";
|
|
};
|
|
|
|
# TODO: Remove once https://github.com/kubernetes-sigs/kustomize/pull/3708 got merged.
|
|
doCheck = false;
|
|
|
|
# avoid finding test and development commands
|
|
sourceRoot = "source/kustomize";
|
|
|
|
vendorSha256 = "sha256-VMvXDIrg/BkuxZVDHvpfHY/hgwQGz2kw1/hu5lhcYEE=";
|
|
|
|
meta = with lib; {
|
|
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";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ carlosdagos vdemeester periklis zaninime Chili-Man saschagrunert ];
|
|
};
|
|
}
|