mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 03:53:47 +00:00
mautrix-signal: Reformat code
This commit is contained in:
parent
d60e6bf881
commit
32b79e940e
@ -1,4 +1,14 @@
|
||||
{ lib, stdenv, fetchFromGitHub, rustPlatform, runCommand, xcodebuild, protobuf, boringssl, darwin }:
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
rustPlatform,
|
||||
runCommand,
|
||||
xcodebuild,
|
||||
protobuf,
|
||||
boringssl,
|
||||
darwin,
|
||||
}:
|
||||
let
|
||||
# boring-sys expects the static libraries in build/ instead of lib/
|
||||
boringssl-wrapper = runCommand "boringssl-wrapper" { } ''
|
||||
@ -39,7 +49,10 @@ rustPlatform.buildRustPackage rec {
|
||||
};
|
||||
};
|
||||
|
||||
cargoBuildFlags = [ "-p" "libsignal-ffi" ];
|
||||
cargoBuildFlags = [
|
||||
"-p"
|
||||
"libsignal-ffi"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "C ABI library which exposes Signal protocol logic";
|
||||
|
@ -38,7 +38,11 @@ buildGoModule rec {
|
||||
homepage = "https://github.com/mautrix/signal";
|
||||
description = "Matrix-Signal puppeting bridge";
|
||||
license = licenses.agpl3Plus;
|
||||
maintainers = with maintainers; [ expipiplus1 niklaskorz ma27 ];
|
||||
maintainers = with maintainers; [
|
||||
expipiplus1
|
||||
niklaskorz
|
||||
ma27
|
||||
];
|
||||
mainProgram = "mautrix-signal";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user