mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
32 lines
682 B
Nix
32 lines
682 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubefwd";
|
|
version = "1.22.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "txn2";
|
|
repo = "kubefwd";
|
|
rev = version;
|
|
hash = "sha256-xTd/1h9fW2GbZ2u3RsExbQouRZot9CUDuqNLItRySxM=";
|
|
};
|
|
|
|
vendorHash = "sha256-qAlzgPw1reDZYK+InlnAsBgVemVumWwLgEuYm+ALcCs=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=main.Version=${version}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Bulk port forwarding Kubernetes services for local development";
|
|
homepage = "https://github.com/txn2/kubefwd";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ iogamaster ];
|
|
mainProgram = "kubefwd";
|
|
};
|
|
}
|