rpclib: init at 2.3.0

This commit is contained in:
Vladimir Korolev
2025-05-05 18:50:02 +02:00
committed by Viktor Sonesten
parent 705c1cec9a
commit 65d159f75c
+26
View File
@@ -0,0 +1,26 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "rpclib";
version = "2.3.0";
src = fetchFromGitHub {
owner = "rpclib";
repo = "rpclib";
rev = "v${finalAttrs.version}";
sha256 = "0dlbkl47zd2fkxwbn93w51wmvfr8ssp4zribn5wi4cpiky44a4g9";
};
nativeBuildInputs = [ cmake ];
meta = {
description = "RPC library for C++, providing both a client and server implementation";
homepage = "https://github.com/rpclib/rpclib/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tmplt ];
};
})