blob: 6c9e18cc8f153d34f49a708a3f57f99d28feab0b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
, sqlite
, stdenv
, darwin
, nixosTests
}:
rustPlatform.buildRustPackage rec {
pname = "mollysocket";
version = "1.4.1";
src = fetchFromGitHub {
owner = "mollyim";
repo = "mollysocket";
rev = version;
hash = "sha256-vE5J4BKYmVqtowfxDDTOwFKws7phYRm9xKFPiDNuNn4=";
};
cargoHash = "sha256-s/EhX5o6XuUqcrqhXY274MyWhRukgetfIZKQ4XNlq6Y=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
sqlite
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.Security
];
checkFlags = [
# tests interact with Signal servers
"--skip=config::tests::check_wildcard_endpoint"
"--skip=utils::post_allowed::tests::test_allowed"
"--skip=utils::post_allowed::tests::test_not_allowed"
"--skip=utils::post_allowed::tests::test_post"
"--skip=ws::tls::tests::connect_untrusted_server"
"--skip=ws::tls::tests::connect_trusted_server"
];
passthru.tests = {
inherit (nixosTests) mollysocket;
};
meta = {
changelog = "https://github.com/mollyim/mollysocket/releases/tag/${version}";
description = "Get Signal notifications via UnifiedPush";
homepage = "https://github.com/mollyim/mollysocket";
license = lib.licenses.agpl3Plus;
mainProgram = "mollysocket";
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|