Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

syncplay: use python 3.7 #93677

Merged
merged 1 commit into from
Jul 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8364,7 +8364,7 @@ in
else ../development/compilers/gcc/9);
gcc = if (with stdenv.targetPlatform; isVc4 || libc == "relibc")
then gcc6 else gcc9;

gcc-unwrapped = gcc.cc;

gccStdenv = if stdenv.cc.isGNU then stdenv else stdenv.override {
Expand Down Expand Up @@ -22620,7 +22620,8 @@ in

symlinks = callPackage ../tools/system/symlinks { };

syncplay = python3.pkgs.callPackage ../applications/networking/syncplay { };
# this can be changed to python3 once pyside2 is updated to support the latest python version
syncplay = python37.pkgs.callPackage ../applications/networking/syncplay { };
ashkitten marked this conversation as resolved.
Show resolved Hide resolved

inherit (callPackages ../applications/networking/syncthing { })
syncthing
Expand Down