2019-06-10 01:49:36 -07:00
|
|
|
{ lib, fetchFromGitHub, buildPythonApplication, pyside, twisted, certifi }:
|
2017-12-12 00:59:33 -08:00
|
|
|
|
2019-06-10 01:49:36 -07:00
|
|
|
buildPythonApplication rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "syncplay";
|
2019-07-16 17:24:38 -07:00
|
|
|
version = "1.6.4";
|
2017-12-12 00:59:33 -08:00
|
|
|
|
|
|
|
format = "other";
|
|
|
|
|
2019-06-10 01:49:36 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Syncplay";
|
|
|
|
repo = "syncplay";
|
|
|
|
rev = "v${version}";
|
2019-07-16 17:24:38 -07:00
|
|
|
sha256 = "0afh2a0l1c3hwgj5q6wy0v5iimg8qcjam3pw7b8mf63lasx6iqk4";
|
2017-12-12 00:59:33 -08:00
|
|
|
};
|
|
|
|
|
2019-06-10 01:49:36 -07:00
|
|
|
propagatedBuildInputs = [ pyside twisted certifi ] ++ twisted.extras.tls;
|
2017-12-12 00:59:33 -08:00
|
|
|
|
2018-07-09 04:00:49 -07:00
|
|
|
makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];
|
2017-12-12 00:59:33 -08:00
|
|
|
|
2019-06-10 01:49:36 -07:00
|
|
|
meta = with lib; {
|
2018-06-27 13:12:57 -07:00
|
|
|
homepage = https://syncplay.pl/;
|
2017-12-12 00:59:33 -08:00
|
|
|
description = "Free software that synchronises media players";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ enzime ];
|
|
|
|
};
|
|
|
|
}
|