Merge pull request #297056 from arikgrahl/ingress2gateway

ingress2gateway: init at 0.2.0
This commit is contained in:
lassulus 2024-06-25 20:40:10 +02:00 committed by GitHub
commit a684053194
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,28 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "ingress2gateway";
version = "0.2.0";
src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = pname;
rev = "v${version}";
hash = "sha256-+ImMpO1qRkXYLy+MDloKSoDCmMmJSBorgDjzaeSCBdY=";
};
vendorHash = "sha256-IEU9cfYCkrQagxzJT6jPz2nRCz1BAaiGvkEPhNRQr4E=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Convert Ingress resources to Gateway API resources ";
homepage = "https://github.com/kubernetes-sigs/ingress2gateway";
license = licenses.asl20;
maintainers = with maintainers; [ arikgrahl ];
mainProgram = "ingress2gateway";
};
}