Unverified Commit 335bd898 authored by Alyssa Ross's avatar Alyssa Ross
Browse files

deltachat-repl,deltachat-rpc-server: use OpenSSL from Nixpkgs

parent 78247063
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
{ rustPlatform
, libdeltachat
, perl
, pkg-config
}:

@@ -10,10 +9,13 @@ rustPlatform.buildRustPackage {
  inherit (libdeltachat) version src cargoLock buildInputs;

  nativeBuildInputs = [
    perl
    pkg-config
  ];

  env = {
    OPENSSL_NO_VENDOR = true;
  };

  cargoBuildFlags = [ "--package" "deltachat-repl" ];

  doCheck = false;
+4 −2
Original line number Diff line number Diff line
{ rustPlatform
, libdeltachat
, perl
, pkg-config
}:

@@ -10,10 +9,13 @@ rustPlatform.buildRustPackage {
  inherit (libdeltachat) version src cargoLock buildInputs;

  nativeBuildInputs = [
    perl
    pkg-config
  ];

  env = {
    OPENSSL_NO_VENDOR = true;
  };

  cargoBuildFlags = [ "--package" "deltachat-rpc-server" ];

  doCheck = false;