about summary refs log tree commit diff
path: root/pkgs/applications/networking/syncplay
diff options
context:
space:
mode:
authorScott Olson <scott@solson.me>2019-06-28 00:23:31 -0600
committerScott Olson <scott@solson.me>2019-12-18 17:46:52 -0600
commitb6efb248503cc6eb7fb9cebcbc2e55a94712b9b1 (patch)
tree8b9425a6dcfcf679a8f0ca8dc78d113fe782a660 /pkgs/applications/networking/syncplay
parentad7c7cfe7a6873e17078478a845168ebefb4aa17 (diff)
syncplay: upgrade from Qt4 to Qt5 dependency
Syncplay automatically detects whether it has access to PySide, which
binds Qt4, or PySide2, which binds Qt5. By simply updating the
dependencies, we can upgrade Syncplay to Qt5.
Diffstat (limited to 'pkgs/applications/networking/syncplay')
-rw-r--r--pkgs/applications/networking/syncplay/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/syncplay/default.nix b/pkgs/applications/networking/syncplay/default.nix
index 3e5d3187e9b2c..0e31893e9a4b5 100644
--- a/pkgs/applications/networking/syncplay/default.nix
+++ b/pkgs/applications/networking/syncplay/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchFromGitHub, buildPythonApplication, pyside, twisted, certifi }:
+{ lib, fetchFromGitHub, buildPythonApplication, pyside2, shiboken2, twisted, certifi }:
 
 buildPythonApplication rec {
   pname = "syncplay";
@@ -13,7 +13,7 @@ buildPythonApplication rec {
     sha256 = "0afh2a0l1c3hwgj5q6wy0v5iimg8qcjam3pw7b8mf63lasx6iqk4";
   };
 
-  propagatedBuildInputs = [ pyside twisted certifi ] ++ twisted.extras.tls;
+  propagatedBuildInputs = [ pyside2 shiboken2 twisted certifi ] ++ twisted.extras.tls;
 
   makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];