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: e3382c54aecc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6bd6d678455a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 26, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    31025b0 View commit details

Commits on Nov 27, 2020

  1. Merge pull request #101702 from r-ryantm/auto-update/mopidy-musicbox-…

    …webclient
    
    mopidy-musicbox-webclient: 2.4.0 -> 3.1.0
    SuperSandro2000 authored Nov 27, 2020
    Copy the full SHA
    6bd6d67 View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/applications/audio/mopidy/musicbox-webclient.nix
5 changes: 3 additions & 2 deletions pkgs/applications/audio/mopidy/musicbox-webclient.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

pythonPackages.buildPythonApplication rec {
pname = "mopidy-musicbox-webclient";
version = "2.4.0";
version = "3.1.0";

src = fetchFromGitHub {
owner = "pimusicbox";
repo = "mopidy-musicbox-webclient";
rev = "v${version}";
sha256 = "0784s32pap9rbki3f0f7swaf6946sdv4xzidns13jmw9ilifk5z4";
sha256 = "1lzarazq67gciyn6r8cdms0f7j0ayyfwhpf28z93ydb280mfrrb9";
};

propagatedBuildInputs = [ mopidy ];
@@ -18,6 +18,7 @@ pythonPackages.buildPythonApplication rec {
meta = with stdenv.lib; {
description = "Mopidy extension for playing music from SoundCloud";
license = licenses.mit;
broken = stdenv.isDarwin;
maintainers = [ maintainers.spwhitt ];
};
}