libdeltachat: 1.70.0 -> 1.71.0

https://github.com/deltachat/deltachat-core-rust/blob/1.71.0/CHANGELOG.md
This commit is contained in:
Robert Schütz 2022-01-24 02:40:16 +00:00 committed by Robert Schütz
parent 651c5cef10
commit e014c52972

View file

@ -6,6 +6,7 @@
, perl
, pkg-config
, rustPlatform
, sqlcipher
, sqlite
, fixDarwinDylibNames
, CoreFoundation
@ -15,13 +16,13 @@
stdenv.mkDerivation rec {
pname = "libdeltachat";
version = "1.70.0";
version = "1.71.0";
src = fetchFromGitHub {
owner = "deltachat";
repo = "deltachat-core-rust";
rev = version;
hash = "sha256-702XhFWvFG+g++3X97sy6C5DMNWogv1Xbr8QPR8QyLo=";
hash = "sha256-zpjg7R6/fmDfvFTsooak3B+gwbCadwxiQfbKREqEXY8=";
};
patches = [
@ -33,7 +34,7 @@ stdenv.mkDerivation rec {
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-MiSGJMXe8vouv4XEHXq274FHEvBMtd7IX6DyNJIWYeU=";
hash = "sha256-BHjb2mtB7b2KhQtdlLwDPg7plkS3uYku7AfxRExQhfs=";
};
nativeBuildInputs = [
@ -49,6 +50,7 @@ stdenv.mkDerivation rec {
buildInputs = [
openssl
sqlcipher
sqlite
] ++ lib.optionals stdenv.isDarwin [
CoreFoundation