2018-11-10 16:44:45 -08:00
|
|
|
{ stdenv, fetchurl, python3Packages }:
|
2017-12-12 00:59:33 -08:00
|
|
|
|
2018-11-10 16:44:45 -08:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2017-12-12 00:59:33 -08:00
|
|
|
name = "syncplay-${version}";
|
2019-01-26 21:14:37 -08:00
|
|
|
version = "1.6.2";
|
2017-12-12 00:59:33 -08:00
|
|
|
|
|
|
|
format = "other";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-01-26 21:14:37 -08:00
|
|
|
url = https://github.com/Syncplay/syncplay/archive/v1.6.2.tar.gz;
|
|
|
|
sha256 = "1850icvifq4487gqh8awvmvrjdbbkx2kshmysr0fbi6vcf0f3wj2";
|
2017-12-12 00:59:33 -08:00
|
|
|
};
|
|
|
|
|
2018-11-10 16:44:45 -08:00
|
|
|
propagatedBuildInputs = with python3Packages; [ pyside twisted ];
|
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
|
|
|
|
|
|
|
meta = with stdenv.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 ];
|
|
|
|
};
|
|
|
|
}
|