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

26 lines
690 B
Nix
Raw Normal View History

2017-12-12 09:59:33 +01:00
{ stdenv, fetchurl, python2Packages }:
python2Packages.buildPythonApplication rec {
name = "syncplay-${version}";
version = "1.5.5";
2017-12-12 09:59:33 +01:00
format = "other";
src = fetchurl {
url = https://github.com/Syncplay/syncplay/archive/v1.5.5.tar.gz;
sha256 = "0g12hm84c48fjrmwljl0ii62f55vm6fk2mv8vna7fadabmk6dwhr";
2017-12-12 09:59:33 +01:00
};
propagatedBuildInputs = with python2Packages; [ pyside twisted ];
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 ];
};
}