blob: ff5137debe396634e8ee11143ae5dcde55c312b0 (
plain)
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
59
60
61
|
{
stdenv,
lib,
fetchurl,
_7zz,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "signal-desktop";
version = "7.29.0";
src = fetchurl {
url = "https://updates.signal.org/desktop/signal-desktop-mac-universal-${finalAttrs.version}.dmg";
hash = "sha256-R/NYPb7bvLbyDYntw2K75SC1/sqNO7HAJ3QUwGThvUg=";
};
sourceRoot = ".";
nativeBuildInputs = [ _7zz ];
dontConfigure = true;
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out/Applications
cp -r Signal.app $out/Applications
runHook postInstall
'';
passthru = {
updateScript.command = [ ./update.sh ];
};
meta = {
description = "Private, simple, and secure messenger";
longDescription = ''
Signal Desktop is an Electron application that links with your
"Signal Android" or "Signal iOS" app.
'';
homepage = "https://signal.org/";
downloadPage = "https://signal.org/download/macos/";
changelog = "https://github.com/signalapp/Signal-Desktop/releases/tag/v${finalAttrs.version}";
license = with lib.licenses; [
agpl3Only
# Various npm packages
free
# has non-redistributable Apple emoji packaged, see main derivation
unfree
];
maintainers = with lib.maintainers; [ nickhu ];
platforms = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
})
|