rune: fix build on darwin
[NixPkgs.git] / pkgs / development / tools / kustomize / 3.nix
blob01cb1fd4861550fe86b285e34ffa115e04688d71
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "kustomize_3";
5   version = "3.10.0";
6   # rev is the commit of the tag, mainly for kustomize version command output
7   rev = "602ad8aa98e2e17f6c9119e027a09757e63c8bec";
9   ldflags = let t = "sigs.k8s.io/kustomize/api/provenance"; in [
10     "-s -w"
11     "-X ${t}.version=${version}"
12     "-X ${t}.gitCommit=${rev}"
13   ];
15   src = fetchFromGitHub {
16     owner = "kubernetes-sigs";
17     repo = "kustomize";
18     rev = "kustomize/v${version}";
19     sha256 = "sha256-ESIykbAKXdv8zM9be0zEJ71rBAzZby0aTg25NlCsIOM=";
20   };
22   doCheck = true;
24   # avoid finding test and development commands
25   sourceRoot = "${src.name}/kustomize";
27   vendorHash = "sha256-xLeetcmzvpILLLMhMx7oahWLxguFjG3qbYpeeWpFUlw=";
29   meta = with lib; {
30     description = "Customization of kubernetes YAML configurations";
31     longDescription = ''
32       kustomize lets you customize raw, template-free YAML files for
33       multiple purposes, leaving the original YAML untouched and usable
34       as is.
35     '';
36     homepage = "https://github.com/kubernetes-sigs/kustomize";
37     license = licenses.asl20;
38     maintainers = with maintainers; [ carlosdagos vdemeester zaninime Chili-Man saschagrunert ];
39     mainProgram = "kustomize";
40   };