kitex: init at 0.10.0
This commit is contained in:
parent
d913a66f27
commit
97c6f1c5e8
42
pkgs/by-name/ki/kitex/package.nix
Normal file
42
pkgs/by-name/ki/kitex/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user