nixpkgs/pkgs/applications/networking/syncplay/default.nix
Michael Hoang e64b114c3a syncplay: 1.5.3 -> 1.5.5 (#43245)
Leave syncplay to install to the correct directory rather than moving
folders around to make it work.
2018-07-09 13:00:49 +02:00

26 lines
690 B
Nix

{ stdenv, fetchurl, python2Packages }:
python2Packages.buildPythonApplication rec {
name = "syncplay-${version}";
version = "1.5.5";
format = "other";
src = fetchurl {
url = https://github.com/Syncplay/syncplay/archive/v1.5.5.tar.gz;
sha256 = "0g12hm84c48fjrmwljl0ii62f55vm6fk2mv8vna7fadabmk6dwhr";
};
propagatedBuildInputs = with python2Packages; [ 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 ];
};
}