Merge pull request #277367 from niklaskorz/mautrix-signal-go
mautrix-signal: 0.4.3 -> unstable-2023-12-30
This commit is contained in:
commit
a7e43d89e5
4 changed files with 3898 additions and 52 deletions
|
@ -13246,6 +13246,13 @@
|
||||||
githubId = 6391776;
|
githubId = 6391776;
|
||||||
name = "Nikita Voloboev";
|
name = "Nikita Voloboev";
|
||||||
};
|
};
|
||||||
|
niklaskorz = {
|
||||||
|
name = "Niklas Korz";
|
||||||
|
email = "niklas@niklaskorz.de";
|
||||||
|
matrix = "@niklaskorz:korz.dev";
|
||||||
|
github = "niklaskorz";
|
||||||
|
githubId = 590517;
|
||||||
|
};
|
||||||
NikolaMandic = {
|
NikolaMandic = {
|
||||||
email = "nikola@mandic.email";
|
email = "nikola@mandic.email";
|
||||||
github = "NikolaMandic";
|
github = "NikolaMandic";
|
||||||
|
|
3829
pkgs/by-name/li/libsignal-ffi/Cargo.lock
generated
Normal file
3829
pkgs/by-name/li/libsignal-ffi/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
46
pkgs/by-name/li/libsignal-ffi/package.nix
Normal file
46
pkgs/by-name/li/libsignal-ffi/package.nix
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, runCommand, xcodebuild, protobuf, boringssl }:
|
||||||
|
let
|
||||||
|
# boring-sys expects the static libraries in build/ instead of lib/
|
||||||
|
boringssl-wrapper = runCommand "boringssl-wrapper" { } ''
|
||||||
|
mkdir $out
|
||||||
|
cd $out
|
||||||
|
ln -s ${boringssl.out}/lib build
|
||||||
|
ln -s ${boringssl.dev}/include include
|
||||||
|
'';
|
||||||
|
in
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "libsignal-ffi";
|
||||||
|
# must match the version used in mautrix-signal
|
||||||
|
# see https://github.com/mautrix/signal/issues/401
|
||||||
|
version = "0.36.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "signalapp";
|
||||||
|
repo = "libsignal";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-UD4E2kI1ZNtFhwBGphTzF37NHqbSZjQGHbliOWAMYOE=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ protobuf ] ++ lib.optionals stdenv.isDarwin [ xcodebuild ];
|
||||||
|
buildInputs = [ rustPlatform.bindgenHook ];
|
||||||
|
|
||||||
|
env.BORING_BSSL_PATH = "${boringssl-wrapper}";
|
||||||
|
|
||||||
|
# The Cargo.lock contains git dependencies
|
||||||
|
cargoLock = {
|
||||||
|
lockFile = ./Cargo.lock;
|
||||||
|
outputHashes = {
|
||||||
|
"boring-3.1.0" = "sha256-R6hh4K57mgV10nuVcMZETvxlQsMsmGapgCQ7pjuognk=";
|
||||||
|
"curve25519-dalek-4.1.1" = "sha256-p9Vx0lAaYILypsI4/RVsHZLOqZKaa4Wvf7DanLA38pc=";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoBuildFlags = [ "-p" "libsignal-ffi" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A C ABI library which exposes Signal protocol logic";
|
||||||
|
homepage = "https://github.com/signalapp/libsignal";
|
||||||
|
license = licenses.agpl3Plus;
|
||||||
|
maintainers = with maintainers; [ niklaskorz ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,72 +1,36 @@
|
||||||
{ lib, python3, fetchFromGitHub }:
|
{ lib, buildGoModule, fetchFromGitHub, olm, libsignal-ffi }:
|
||||||
|
|
||||||
python3.pkgs.buildPythonPackage rec {
|
buildGoModule {
|
||||||
pname = "mautrix-signal";
|
pname = "mautrix-signal";
|
||||||
version = "0.4.3";
|
# mautrix-signal's latest released version v0.4.3 still uses the Python codebase
|
||||||
|
# which is broken for new devices, see https://github.com/mautrix/signal/issues/388.
|
||||||
|
# The new Go version fixes this by using the official libsignal as a library and
|
||||||
|
# can be upgraded to directly from the Python version.
|
||||||
|
version = "unstable-2023-12-30";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mautrix";
|
owner = "mautrix";
|
||||||
repo = "signal";
|
repo = "signal";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "6abe80e6c79b31b5dc37a484b65d346a1ffd4f05";
|
||||||
sha256 = "sha256-QShyuwHiWRcP1hGkvCQfixvoUQ/FXr2DYC5VrcMKX48=";
|
hash = "sha256-EDSP+kU0EmIaYbAB/hxAUTEay+H5aqn9ovBQFZg6wJk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
buildInputs = [
|
||||||
# the version mangling in mautrix_signal/get_version.py interacts badly with pythonRelaxDepsHook
|
olm
|
||||||
substituteInPlace setup.py \
|
# must match the version used in https://github.com/mautrix/signal/tree/main/pkg/libsignalgo
|
||||||
--replace 'version=version' 'version="${version}"'
|
# see https://github.com/mautrix/signal/issues/401
|
||||||
'';
|
libsignal-ffi
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
vendorHash = "sha256-f3sWX+mBouuxVKu+fZIYTWLXT64fllUWpcUYAxjzQpI=";
|
||||||
"mautrix"
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
|
||||||
commonmark
|
|
||||||
aiohttp
|
|
||||||
aiosqlite
|
|
||||||
asyncpg
|
|
||||||
attrs
|
|
||||||
commonmark
|
|
||||||
mautrix
|
|
||||||
phonenumbers
|
|
||||||
pillow
|
|
||||||
prometheus-client
|
|
||||||
pycryptodome
|
|
||||||
python-olm
|
|
||||||
python-magic
|
|
||||||
qrcode
|
|
||||||
ruamel-yaml
|
|
||||||
unpaddedbase64
|
|
||||||
yarl
|
|
||||||
];
|
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
postInstall = ''
|
|
||||||
mkdir -p $out/bin
|
|
||||||
|
|
||||||
# Make a little wrapper for running mautrix-signal with its dependencies
|
|
||||||
echo "$mautrixSignalScript" > $out/bin/mautrix-signal
|
|
||||||
echo "#!/bin/sh
|
|
||||||
exec python -m mautrix_signal \"\$@\"
|
|
||||||
" > $out/bin/mautrix-signal
|
|
||||||
chmod +x $out/bin/mautrix-signal
|
|
||||||
wrapProgram $out/bin/mautrix-signal \
|
|
||||||
--prefix PATH : "${python3}/bin" \
|
|
||||||
--prefix PYTHONPATH : "$PYTHONPATH"
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/mautrix/signal";
|
homepage = "https://github.com/mautrix/signal";
|
||||||
description = "A Matrix-Signal puppeting bridge";
|
description = "A Matrix-Signal puppeting bridge";
|
||||||
license = licenses.agpl3Plus;
|
license = licenses.agpl3Plus;
|
||||||
platforms = platforms.linux;
|
maintainers = with maintainers; [ expipiplus1 niklaskorz ma27 ];
|
||||||
maintainers = with maintainers; [ expipiplus1 ];
|
|
||||||
mainProgram = "mautrix-signal";
|
mainProgram = "mautrix-signal";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue