nixpkgs/pkgs/applications/networking/syncplay/default.nix

33 lines
842 B
Nix
Raw Normal View History

2019-12-19 20:52:32 +00:00
{ lib, fetchFromGitHub, buildPythonApplication, pyside2, shiboken2, twisted, certifi, qt5 }:
2017-12-12 08:59:33 +00:00
buildPythonApplication rec {
pname = "syncplay";
2019-06-28 06:24:16 +00:00
version = "1.6.4a";
2017-12-12 08:59:33 +00:00
format = "other";
src = fetchFromGitHub {
owner = "Syncplay";
repo = "syncplay";
rev = "v${version}";
2019-06-28 06:24:16 +00:00
sha256 = "0zz4a3vzfg808z1qkqz31z4818wzpfa2lika7wl0jgpmw4zi85ix";
2017-12-12 08:59:33 +00:00
};
propagatedBuildInputs = [ pyside2 shiboken2 twisted certifi ] ++ twisted.extras.tls;
2019-12-19 20:52:32 +00:00
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
2017-12-12 08:59:33 +00:00
makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];
2017-12-12 08:59:33 +00:00
2019-12-19 20:52:32 +00:00
postFixup = ''
wrapQtApp $out/bin/syncplay
'';
meta = with lib; {
2018-06-27 20:12:57 +00:00
homepage = https://syncplay.pl/;
2017-12-12 08:59:33 +00:00
description = "Free software that synchronises media players";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ enzime ];
};
}