mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 17:44:44 +00:00
syncplay: apply wrapQtAppsHook fix
This commit is contained in:
parent
2e677bde28
commit
487759d1b0
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user