Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 634f980b3fdc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 337f8f7301ae
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 11, 2018

  1. syncplay: 1.5.5 -> 1.6.0

    worldofpeace committed Nov 11, 2018
    Copy the full SHA
    627d656 View commit details
  2. Merge pull request #50213 from worldofpeace/syncplay/1.6.0

    syncplay: 1.5.5 -> 1.6.0
    infinisil authored Nov 11, 2018
    Copy the full SHA
    337f8f7 View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/applications/networking/syncplay/default.nix
12 changes: 6 additions & 6 deletions pkgs/applications/networking/syncplay/default.nix
Original file line number Diff line number Diff line change
@@ -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)" ];