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

40 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-07-26 03:56:44 +01:00
2019-07-06 08:41:41 +01:00
buildGoModule rec {
pname = "kustomize";
2021-01-18 13:40:00 +00:00
version = "3.9.2";
# rev is the 3.9.2 commit, mainly for kustomize version command output
rev = "e98eada7365fc564c9aba392e954f306a9cbf1dd";
2018-07-26 03:56:44 +01:00
buildFlagsArray = let t = "sigs.k8s.io/kustomize/api/provenance"; in
''
-ldflags=
-s -X ${t}.version=${version}
-X ${t}.gitCommit=${rev}
'';
2018-07-26 03:56:44 +01:00
src = fetchFromGitHub {
owner = "kubernetes-sigs";
2019-10-20 17:50:27 +01:00
repo = pname;
rev = "kustomize/v${version}";
2021-01-18 13:40:00 +00:00
sha256 = "0p1rxswfaj0g3y8nfw70qmxrlyv1pnzkapy1mxpzzyf04mmhg7wn";
2018-07-26 03:56:44 +01:00
};
2019-10-20 17:50:27 +01:00
# avoid finding test and development commands
sourceRoot = "source/kustomize";
2021-01-18 13:40:00 +00:00
vendorSha256 = "1pv8g0nnrpzbvd6dqgnrw2i27xkilbrr9npdz6pxr7mmbcg3w3w9";
2019-07-06 08:41:41 +01:00
meta = with lib; {
2018-07-26 03:56:44 +01: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 03:56:44 +01:00
license = licenses.asl20;
2021-01-07 01:49:39 +00:00
maintainers = with maintainers; [ carlosdagos vdemeester periklis zaninime Chili-Man];
2018-07-26 03:56:44 +01:00
};
}