f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{ 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.52.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "signalapp";
|
|
repo = "libsignal";
|
|
rev = "v${version}";
|
|
hash = "sha256-MFTTrIJ9+1NgaL9KD4t0KYR2feHow+HtyYXQWJgKilM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
protobuf
|
|
rustPlatform.bindgenHook
|
|
] ++ lib.optionals stdenv.isDarwin [ xcodebuild ];
|
|
|
|
env.BORING_BSSL_PATH = "${boringssl-wrapper}";
|
|
|
|
# The Cargo.lock contains git dependencies
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"boring-4.6.0" = "sha256-IjkpCKZ4Y1UTrFPg4g/bak+/mJFiyfUyxtTtT5uzcUY=";
|
|
"curve25519-dalek-4.1.3" = "sha256-bPh7eEgcZnq9C3wmSnnYv0C4aAP+7pnwk9Io29GrI4A=";
|
|
};
|
|
};
|
|
|
|
cargoBuildFlags = [ "-p" "libsignal-ffi" ];
|
|
|
|
meta = with lib; {
|
|
description = "C ABI library which exposes Signal protocol logic";
|
|
homepage = "https://github.com/signalapp/libsignal";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ niklaskorz ];
|
|
};
|
|
}
|