Merge pull request #50213 from worldofpeace/syncplay/1.6.0

syncplay: 1.5.5 -> 1.6.0
This commit is contained in:
Silvan Mosberger 2018-11-11 02:11:53 +01:00 committed by GitHub
commit 337f8f7301
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,17 @@
{ stdenv, fetchurl, python2Packages }:
{ stdenv, fetchurl, python3Packages }:
python2Packages.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
name = "syncplay-${version}";
version = "1.5.5";
version = "1.6.0";
format = "other";
src = fetchurl {
url = https://github.com/Syncplay/syncplay/archive/v1.5.5.tar.gz;
sha256 = "0g12hm84c48fjrmwljl0ii62f55vm6fk2mv8vna7fadabmk6dwhr";
url = https://github.com/Syncplay/syncplay/archive/v1.6.0.tar.gz;
sha256 = "19x7b694p8b3qp578qk8q4g0pybhfjd4zk8rgrggz40s1yyfnwy5";
};
propagatedBuildInputs = with python2Packages; [ pyside twisted ];
propagatedBuildInputs = with python3Packages; [ pyside twisted ];
makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];