2018-11-11 01:44:45 +01:00
|
|
|
{ stdenv, fetchurl, python3Packages }:
|
2017-12-12 09:59:33 +01:00
|
|
|
|
2018-11-11 01:44:45 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2017-12-12 09:59:33 +01:00
|
|
|
name = "syncplay-${version}";
|
2019-04-03 06:36:31 +02:00
|
|
|
version = "1.6.3";
|
2017-12-12 09:59:33 +01:00
|
|
|
|
|
|
|
format = "other";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-03 06:36:31 +02:00
|
|
|
url = https://github.com/Syncplay/syncplay/archive/v1.6.3.tar.gz;
|
|
|
|
sha256 = "151p1njlp3dp3pfr3l3m6ia5829zvjyjh4p45j6rgnicbh8sqrgs";
|
2017-12-12 09:59:33 +01:00
|
|
|
};
|
|
|
|
|
2018-11-11 01:44:45 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [ pyside twisted ];
|
2017-12-12 09:59:33 +01:00
|
|
|
|
2018-07-09 13:00:49 +02:00
|
|
|
makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];
|
2017-12-12 09:59:33 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-06-27 22:12:57 +02:00
|
|
|
homepage = https://syncplay.pl/;
|
2017-12-12 09:59:33 +01:00
|
|
|
description = "Free software that synchronises media players";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ enzime ];
|
|
|
|
};
|
|
|
|
}
|