nixpkgs/pkgs/applications/networking/syncplay/default.nix

26 lines
690 B
Nix
Raw Normal View History

2018-11-11 01:44:45 +01:00
{ stdenv, fetchurl, python3Packages }:
2017-12-12 09:59:33 +01:00
2018-11-11 01:44:45 +01:00
python3Packages.buildPythonApplication rec {
2017-12-12 09:59:33 +01:00
name = "syncplay-${version}";
version = "1.6.3";
2017-12-12 09:59:33 +01:00
format = "other";
src = fetchurl {
url = https://github.com/Syncplay/syncplay/archive/v1.6.3.tar.gz;
sha256 = "151p1njlp3dp3pfr3l3m6ia5829zvjyjh4p45j6rgnicbh8sqrgs";
2017-12-12 09:59:33 +01:00
};
2018-11-11 01:44:45 +01:00
propagatedBuildInputs = with python3Packages; [ pyside twisted ];
2017-12-12 09:59:33 +01:00
makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];
2017-12-12 09:59:33 +01:00
meta = with stdenv.lib; {
2018-06-27 22:12:57 +02:00
homepage = https://syncplay.pl/;
2017-12-12 09:59:33 +01:00
description = "Free software that synchronises media players";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ enzime ];
};
}