nixpkgs/pkgs/applications/networking/syncplay/default.nix
R. RyanTM 21a50a45ca syncplay: 1.6.1 -> 1.6.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/syncplay/versions
2019-01-26 21:14:37 -08:00

26 lines
690 B
Nix

{ 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 ];
};
}