47 lines
951 B
Nix
47 lines
951 B
Nix
|
|
{
|
||
|
|
buildGoModule,
|
||
|
|
fetchFromGitHub,
|
||
|
|
lib,
|
||
|
|
testers,
|
||
|
|
kitex,
|
||
|
|
}:
|
||
|
|
|
||
|
|
buildGoModule (finalAttrs: {
|
||
|
|
pname = "kitex";
|
||
|
|
version = "0.15.1";
|
||
|
|
|
||
|
|
src = fetchFromGitHub {
|
||
|
|
owner = "cloudwego";
|
||
|
|
repo = "kitex";
|
||
|
|
tag = "v${finalAttrs.version}";
|
||
|
|
hash = "sha256-otTaFW+wYrHdgzuC2ua4sUCTfn6BMmoA4YaWPoYQjK4=";
|
||
|
|
};
|
||
|
|
|
||
|
|
vendorHash = "sha256-9o+9HVC6WRhKhAKnN6suumNBKS2y392A6vQCQYtRsfM=";
|
||
|
|
|
||
|
|
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${finalAttrs.version}";
|
||
|
|
};
|
||
|
|
|
||
|
|
meta = {
|
||
|
|
description = "High-performance and strong-extensibility Golang RPC framework";
|
||
|
|
homepage = "https://github.com/cloudwego/kitex";
|
||
|
|
license = lib.licenses.asl20;
|
||
|
|
maintainers = [ ];
|
||
|
|
mainProgram = "kitex";
|
||
|
|
};
|
||
|
|
})
|