blob: df5bf0a659ff07778ed2c95eddbe2ba175263d1a (
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
|
{
lib,
stdenv,
fetchFromGitHub,
python3Packages,
qt6,
enableGUI ? true,
}:
python3Packages.buildPythonApplication (finalAttrs: {
pname = "syncplay";
version = "1.7.6";
pyproject = false;
src = fetchFromGitHub {
owner = "Syncplay";
repo = "syncplay";
tag = "v${finalAttrs.version}";
sha256 = "sha256-DXkigo3XzR9G0g1egte96LEynSHyfhW7PjVG8i2r8Lc=";
};
patches = [
./trusted_certificates.patch
];
buildInputs = lib.optionals enableGUI [
(if stdenv.hostPlatform.isLinux then qt6.qtwayland else qt6.qtbase)
];
dependencies =
with python3Packages;
[
certifi
pem
twisted
]
++ twisted.optional-dependencies.tls
++ lib.optional enableGUI pyside6
++ lib.optional (stdenv.hostPlatform.isDarwin && enableGUI) appnope;
nativeBuildInputs = lib.optionals enableGUI [ qt6.wrapQtAppsHook ];
makeFlags = [
"DESTDIR="
"PREFIX=$(out)"
];
postFixup = lib.optionalString enableGUI ''
wrapQtApp $out/bin/syncplay
'';
meta = {
homepage = "https://syncplay.pl/";
description = "Free software that synchronises media players";
license = lib.licenses.asl20;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = with lib.maintainers; [ assistant ];
};
})
|