3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/syncplay/default.nix

26 lines
690 B
Nix
Raw Normal View History

2018-11-11 00:44:45 +00:00
{ stdenv, fetchurl, python3Packages }:
2017-12-12 08:59:33 +00:00
2018-11-11 00:44:45 +00:00
python3Packages.buildPythonApplication rec {
2017-12-12 08:59:33 +00:00
name = "syncplay-${version}";
version = "1.6.3";
2017-12-12 08:59:33 +00:00
format = "other";
src = fetchurl {
url = https://github.com/Syncplay/syncplay/archive/v1.6.3.tar.gz;
sha256 = "151p1njlp3dp3pfr3l3m6ia5829zvjyjh4p45j6rgnicbh8sqrgs";
2017-12-12 08:59:33 +00:00
};
2018-11-11 00:44:45 +00:00
propagatedBuildInputs = with python3Packages; [ pyside twisted ];
2017-12-12 08:59:33 +00:00
makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];
2017-12-12 08:59:33 +00:00
meta = with stdenv.lib; {
2018-06-27 21:12:57 +01: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 ];
};
}