about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/syncplay/default.nix
blob: 3e5d3187e9b2cc8458cf9ccda32bea1399ab8ec1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, fetchFromGitHub, buildPythonApplication, pyside, twisted, certifi }:

buildPythonApplication rec {
  pname = "syncplay";
  version = "1.6.4";

  format = "other";

  src = fetchFromGitHub {
    owner = "Syncplay";
    repo = "syncplay";
    rev = "v${version}";
    sha256 = "0afh2a0l1c3hwgj5q6wy0v5iimg8qcjam3pw7b8mf63lasx6iqk4";
  };

  propagatedBuildInputs = [ pyside twisted certifi ] ++ twisted.extras.tls;

  makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];

  meta = with lib; {
    homepage = https://syncplay.pl/;
    description = "Free software that synchronises media players";
    license = licenses.asl20;
    platforms = platforms.linux;
    maintainers = with maintainers; [ enzime ];
  };
}