summary refs log tree commit diff
path: root/pkgs/applications/networking/syncplay/default.nix
blob: fc9ed59016f6afcf6f2b942d97be47200ce5b9be (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
{ stdenv, fetchurl, python3Packages }:

python3Packages.buildPythonApplication rec {
  name = "syncplay-${version}";
  version = "1.6.2";

  format = "other";

  src = fetchurl {
    url = https://github.com/Syncplay/syncplay/archive/v1.6.2.tar.gz;
    sha256 = "1850icvifq4487gqh8awvmvrjdbbkx2kshmysr0fbi6vcf0f3wj2";
  };

  propagatedBuildInputs = with python3Packages; [ pyside twisted ];

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

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