libdeltachat 1.110.0 -> 1.111.0 https://github.com/deltachat/deltachat-core-rust/releases attrpath: libdeltachat Checking auto update branch... No auto update branch exists Old version 1.110.0" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , openssl , perl , pkg-config , python3 , rustPlatform , sqlcipher , sqlite , fixDarwinDylibNames , CoreFoundation , Security , libiconv }: stdenv.mkDerivation rec { pname = "libdeltachat"; version = "1.111.0"; src = fetchFromGitHub { owner = "deltachat"; repo = "deltachat-core-rust"; rev = "v${version}"; hash = "sha256-Fj5qrvlhty03+rxFqajdNoKFI+7qEHmKBXOLy3EonJ8="; }; patches = [ ./no-static-lib.patch ]; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; name = "${pname}-${version}"; hash = "sha256-5s4onnL5aX4jFxEZWDU9xK6wSdTg7ZJZirxKTiImy38="; }; nativeBuildInputs = [ cmake perl pkg-config ] ++ (with rustPlatform; [ cargoSetupHook rust.cargo ]) ++ lib.optionals stdenv.isDarwin [ fixDarwinDylibNames ]; buildInputs = [ openssl sqlcipher sqlite ] ++ lib.optionals stdenv.isDarwin [ CoreFoundation Security libiconv ]; nativeCheckInputs = with rustPlatform; [ cargoCheckHook ]; passthru.tests = { python = python3.pkgs.deltachat; }; meta = with lib; { description = "Delta Chat Rust Core library"; homepage = "https://github.com/deltachat/deltachat-core-rust/"; changelog = "https://github.com/deltachat/deltachat-core-rust/blob/${src.rev}/CHANGELOG.md"; license = licenses.mpl20; maintainers = with maintainers; [ dotlambda srapenne ]; platforms = platforms.unix; }; }