2020-07-17 07:00:49 +01:00
|
|
|
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "kpt";
|
2021-03-22 10:26:47 +00:00
|
|
|
version = "0.38.1";
|
2020-07-17 07:00:49 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "GoogleContainerTools";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-03-22 10:26:47 +00:00
|
|
|
sha256 = "sha256-gJAdxg/evsQ+mKsNx/migDMK5lCZ2qSrksbsGDr4fmU=";
|
2020-07-17 07:00:49 +01:00
|
|
|
};
|
|
|
|
|
2021-03-22 10:26:47 +00:00
|
|
|
vendorSha256 = "sha256-GvkT51JudEdPz6zbqyf5qY6P2AbsaSMbirnxXmza5aI=";
|
2020-07-17 07:00:49 +01:00
|
|
|
|
2020-08-22 06:50:07 +01:00
|
|
|
subPackages = [ "." ];
|
2020-07-17 07:00:49 +01:00
|
|
|
|
2021-08-26 07:45:51 +01:00
|
|
|
ldflags = [ "-s" "-w" "-X github.com/GoogleContainerTools/kpt/run.version=${version}" ];
|
2020-10-01 05:20:00 +01:00
|
|
|
|
2020-07-17 07:00:49 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A toolkit to help you manage, manipulate, customize, and apply Kubernetes Resource configuration data files";
|
|
|
|
homepage = "https://googlecontainertools.github.io/kpt/";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ mikefaille ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|