kitex: init at 0.10.0

This commit is contained in:
Aaron Jheng 2024-06-12 15:20:19 +08:00
parent d913a66f27
commit 97c6f1c5e8
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3

View File

@ -0,0 +1,42 @@
{ buildGoModule
, fetchFromGitHub
, lib
, testers
, kitex
}:
buildGoModule rec {
pname = "kitex";
version = "0.10.0";
src = fetchFromGitHub {
owner = "cloudwego";
repo = "kitex";
rev = "v${version}";
hash = "sha256-U61n+zaTnABujDSTPcKr4zfMmPVQwxQAotBXZaOVZSo=";
};
vendorHash = "sha256-luZH7ynFni5J3CmLRM3jJPshs/u3zahkS1qS2phopLc=";
subPackages = [ "tool/cmd/kitex" ];
ldflags = [ "-s" "-w" ];
postInstall = ''
ln -s $out/bin/kitex $out/bin/protoc-gen-kitex
ln -s $out/bin/kitex $out/bin/thrift-gen-kitex
'';
passthru.tests.version = testers.testVersion {
package = kitex;
version = "v${version}";
};
meta = with lib; {
description = "A high-performance and strong-extensibility Golang RPC framework";
homepage = "https://github.com/cloudwego/kitex";
license = licenses.asl20;
maintainers = with maintainers; [ aaronjheng ];
mainProgram = "kitex";
};
}