azure-storage-azcopy: 10.27.1 -> 10.28.0 (#377459)
[NixPkgs.git] / pkgs / by-name / ku / kubefwd / package.nix
blobde0b6d9003e0a93354e65cd83ed0793ab2d4ee2a
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "kubefwd";
9   version = "1.22.5";
11   src = fetchFromGitHub {
12     owner = "txn2";
13     repo = "kubefwd";
14     rev = version;
15     hash = "sha256-xTd/1h9fW2GbZ2u3RsExbQouRZot9CUDuqNLItRySxM=";
16   };
18   vendorHash = "sha256-qAlzgPw1reDZYK+InlnAsBgVemVumWwLgEuYm+ALcCs=";
20   ldflags = [
21     "-s"
22     "-w"
23     "-X=main.Version=${version}"
24   ];
26   meta = with lib; {
27     description = "Bulk port forwarding Kubernetes services for local development";
28     homepage = "https://github.com/txn2/kubefwd";
29     license = licenses.asl20;
30     maintainers = with maintainers; [ iogamaster ];
31     mainProgram = "kubefwd";
32   };