Merge pull request #304561 from r-ryantm/auto-update/mautrix-signal

mautrix-signal: 0.5.1 -> 0.6.0
This commit is contained in:
Maximilian Bosch 2024-04-17 22:26:19 +00:00 committed by GitHub
commit 3b11cc5766
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 472 additions and 293 deletions

File diff suppressed because it is too large Load Diff

View File

@ -12,13 +12,13 @@ rustPlatform.buildRustPackage rec {
pname = "libsignal-ffi";
# must match the version used in mautrix-signal
# see https://github.com/mautrix/signal/issues/401
version = "0.41.0";
version = "0.44.0";
src = fetchFromGitHub {
owner = "signalapp";
repo = "libsignal";
rev = "v${version}";
hash = "sha256-U/Wy7nzRQJLdc/dGmYR418Nt1KV70HbcgnDHmYxKytg=";
hash = "sha256-HqnxemAPjjKl/l4dVjEUIIvgW3ibNtQWnA10QYcd8Os=";
};
nativeBuildInputs = [ protobuf ] ++ lib.optionals stdenv.isDarwin [ xcodebuild ];

View File

@ -2,13 +2,13 @@
buildGoModule rec {
pname = "mautrix-signal";
version = "0.5.1";
version = "0.6.0";
src = fetchFromGitHub {
owner = "mautrix";
repo = "signal";
rev = "v${version}";
hash = "sha256-juem0enwwY5HOgci9Am2xcAsJK0F48DtpU7J/Osqd9k=";
hash = "sha256-T5w5k9fuAq5s6Y6pkGoDHSUHCf+kyURBLY0TtzgO85o=";
};
buildInputs = [
@ -18,7 +18,7 @@ buildGoModule rec {
libsignal-ffi
];
vendorHash = "sha256-CnuRzDiUVJt4PrU8u7UmT1ejrdpsohmDv8M0qfFb0Ac=";
vendorHash = "sha256-NuPctTEdj2BjCKqmzASYTlip7cimSff0OuhVIxlh1I8=";
doCheck = false;