mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
eff932e22b
Also cleanup.
28 lines
721 B
Nix
28 lines
721 B
Nix
{ lib, fetchFromGitHub, buildPythonApplication, pyside, twisted, certifi }:
|
|
|
|
buildPythonApplication rec {
|
|
name = "syncplay-${version}";
|
|
version = "1.6.3";
|
|
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Syncplay";
|
|
repo = "syncplay";
|
|
rev = "v${version}";
|
|
sha256 = "03xw44lxdk1h9kbvfviqzpmxxld6zvp07i0hvdm1chchyp0a109h";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|