mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #50213 from worldofpeace/syncplay/1.6.0
syncplay: 1.5.5 -> 1.6.0
This commit is contained in:
commit
337f8f7301
1 changed files with 6 additions and 6 deletions
|
@ -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)" ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue