Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
552 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
rustPlatform,
libdeltachat,
pkg-config,
}:
rustPlatform.buildRustPackage {
pname = "deltachat-rpc-server";
inherit (libdeltachat)
version
src
cargoDeps
buildInputs
;
nativeBuildInputs = [
pkg-config
];
env = {
OPENSSL_NO_VENDOR = true;
};
cargoBuildFlags = [
"--package"
"deltachat-rpc-server"
];
doCheck = false;
meta = libdeltachat.meta // {
description = "Delta Chat RPC server exposing JSON-RPC core API over standard I/O";
mainProgram = "deltachat-rpc-server";
};
}