Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
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";
|
|
};
|
|
})
|