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

28 lines
721 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildPythonApplication, pyside, twisted, certifi }:
2017-12-12 08:59:33 +00:00
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 = fetchFromGitHub {
owner = "Syncplay";
repo = "syncplay";
rev = "v${version}";
sha256 = "03xw44lxdk1h9kbvfviqzpmxxld6zvp07i0hvdm1chchyp0a109h";
2017-12-12 08:59:33 +00:00
};
propagatedBuildInputs = [ pyside twisted certifi ] ++ twisted.extras.tls;
2017-12-12 08:59:33 +00:00
makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];
2017-12-12 08:59:33 +00:00
meta = with lib; {
2018-06-27 20:12:57 +00: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 ];
};
}