lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 32 lines 843 B view raw
1{ lib, fetchFromGitHub, buildPythonApplication, pyside2, shiboken2, twisted, certifi, qt5 }: 2 3buildPythonApplication rec { 4 pname = "syncplay"; 5 version = "1.6.9"; 6 7 format = "other"; 8 9 src = fetchFromGitHub { 10 owner = "Syncplay"; 11 repo = "syncplay"; 12 rev = "v${version}"; 13 sha256 = "0qm3qn4a1nahhs7q81liz514n9blsi107g9s9xfw2i8pzi7v9v0v"; 14 }; 15 16 propagatedBuildInputs = [ pyside2 shiboken2 twisted certifi ] ++ twisted.extras.tls; 17 nativeBuildInputs = [ qt5.wrapQtAppsHook ]; 18 19 makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ]; 20 21 postFixup = '' 22 wrapQtApp $out/bin/syncplay 23 ''; 24 25 meta = with lib; { 26 homepage = "https://syncplay.pl/"; 27 description = "Free software that synchronises media players"; 28 license = licenses.asl20; 29 platforms = platforms.linux; 30 maintainers = with maintainers; [ enzime ]; 31 }; 32}