evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / sk / skaffold / package.nix
blob4303257d4b5b0fdd91cb3879d1e9b8881845dbf0
1 { lib, buildGoModule, fetchFromGitHub, installShellFiles, makeWrapper }:
3 buildGoModule rec {
4   pname = "skaffold";
5   version = "2.13.2";
7   src = fetchFromGitHub {
8     owner = "GoogleContainerTools";
9     repo = "skaffold";
10     rev = "v${version}";
11     hash = "sha256-7hYxSLZxTIu3DmIV7GIdGfEJQ2rWVGkm9/cTmpugI+A=";
12   };
14   vendorHash = null;
16   subPackages = ["cmd/skaffold"];
18   ldflags = let t = "github.com/GoogleContainerTools/skaffold/v2/pkg/skaffold"; in [
19     "-s" "-w"
20     "-X ${t}/version.version=v${version}"
21     "-X ${t}/version.gitCommit=${src.rev}"
22     "-X ${t}/version.buildDate=unknown"
23   ];
25   nativeBuildInputs = [ installShellFiles makeWrapper ];
27   doInstallCheck = true;
28   installCheckPhase = ''
29     $out/bin/skaffold version | grep ${version} > /dev/null
30   '';
32   postInstall = ''
33     wrapProgram $out/bin/skaffold --set SKAFFOLD_UPDATE_CHECK false
35     installShellCompletion --cmd skaffold \
36       --bash <($out/bin/skaffold completion bash) \
37       --zsh <($out/bin/skaffold completion zsh)
38   '';
40   meta = with lib; {
41     homepage = "https://skaffold.dev/";
42     changelog = "https://github.com/GoogleContainerTools/skaffold/releases/tag/v${version}";
43     description = "Easy and Repeatable Kubernetes Development";
44     mainProgram = "skaffold";
45     longDescription = ''
46       Skaffold is a command line tool that facilitates continuous development for Kubernetes applications.
47       You can iterate on your application source code locally then deploy to local or remote Kubernetes clusters.
48       Skaffold handles the workflow for building, pushing and deploying your application.
49       It also provides building blocks and describe customizations for a CI/CD pipeline.
50     '';
51     license = licenses.asl20;
52     maintainers = with maintainers; [ vdemeester bryanasdev000];
53   };