base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / de / deltachat-repl / package.nix
blobeedda8a397affc33987f09a8b0c3ec1ea746f882
1 { rustPlatform
2 , libdeltachat
3 , pkg-config
4 }:
6 rustPlatform.buildRustPackage {
7   pname = "deltachat-repl";
9   inherit (libdeltachat) version src cargoLock buildInputs;
11   nativeBuildInputs = [
12     pkg-config
13   ];
15   env = {
16     OPENSSL_NO_VENDOR = true;
17   };
19   cargoBuildFlags = [ "--package" "deltachat-repl" ];
21   doCheck = false;
23   meta = libdeltachat.meta // {
24     description = "Delta Chat CLI client";
25     mainProgram = "deltachat-repl";
26   };