summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/syncplay
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/syncplay')
-rw-r--r--pkgs/applications/networking/syncplay/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/applications/networking/syncplay/default.nix b/pkgs/applications/networking/syncplay/default.nix
index ce17db933709..920a1c97539e 100644
--- a/pkgs/applications/networking/syncplay/default.nix
+++ b/pkgs/applications/networking/syncplay/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchFromGitHub, buildPythonApplication, pyside2, shiboken2, twisted, certifi }:
+{ lib, fetchFromGitHub, buildPythonApplication, pyside2, shiboken2, twisted, certifi, qt5 }:
buildPythonApplication rec {
pname = "syncplay";
@@ -14,9 +14,14 @@ buildPythonApplication rec {
};
propagatedBuildInputs = [ pyside2 shiboken2 twisted certifi ] ++ twisted.extras.tls;
+ nativeBuildInputs = [ qt5.wrapQtAppsHook ];
makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];
+ postFixup = ''
+ wrapQtApp $out/bin/syncplay
+ '';
+
meta = with lib; {
homepage = https://syncplay.pl/;
description = "Free software that synchronises media players";