Files

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

37 lines
489 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
rustPlatform,
libdeltachat,
pkg-config,
}:
rustPlatform.buildRustPackage {
pname = "deltachat-repl";
inherit (libdeltachat)
version
src
cargoDeps
buildInputs
;
nativeBuildInputs = [
pkg-config
];
env = {
OPENSSL_NO_VENDOR = true;
};
cargoBuildFlags = [
"--package"
"deltachat-repl"
];
doCheck = false;
meta = libdeltachat.meta // {
description = "Delta Chat CLI client";
mainProgram = "deltachat-repl";
};
}