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

28 lines
711 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildPythonApplication, pyside, twisted, certifi }:
2017-12-12 08:59:33 +00:00
buildPythonApplication rec {
pname = "syncplay";
version = "1.6.4";
2017-12-12 08:59:33 +00:00
format = "other";
src = fetchFromGitHub {
owner = "Syncplay";
repo = "syncplay";
rev = "v${version}";
sha256 = "0afh2a0l1c3hwgj5q6wy0v5iimg8qcjam3pw7b8mf63lasx6iqk4";
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 ];
};
}