Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9f11766df5b9
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 612d330c67e3
Choose a head ref
  • 16 commits
  • 12 files changed
  • 5 contributors

Commits on May 19, 2020

  1. mopidy-gmusic: 3.0.0 -> 4.0.0

    NickHu committed May 19, 2020
    Copy the full SHA
    8465c5f View commit details
  2. mopidy-mpris: init at 3.0.1

    NickHu committed May 19, 2020
    Copy the full SHA
    3967a24 View commit details
  3. mopidy-somafm: init at 2.0.0

    NickHu committed May 19, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    primeos Michael Weiss
    Copy the full SHA
    17f3110 View commit details
  4. mopidy-youtube: 2.0.2 -> 3.0

    NickHu committed May 19, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    jtojnar Jan Tojnar
    Copy the full SHA
    cf9ca59 View commit details

Commits on May 23, 2020

  1. Copy the full SHA
    72003fa View commit details

Commits on May 25, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    primeos Michael Weiss
    Copy the full SHA
    c13c38c View commit details

Commits on May 26, 2020

  1. pastel: 0.7.1 -> 0.8.0

    davidtwco committed May 26, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    primeos Michael Weiss
    Copy the full SHA
    fbd2638 View commit details
  2. Copy the full SHA
    fdecd9e View commit details
  3. Copy the full SHA
    eaa7841 View commit details
  4. Merge pull request #78361 from NickHu/mopidy

    mopidy-mpris: init at 3.0.1  mopidy-somafm: init at 2.0.0  mopidy-youtube: 2.0.2 -> 3.0  mopidy-gmusic: 3.0.0 -> 4.0.0
    NickHu authored May 26, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    bf0b10f View commit details
  5. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    90779e4 View commit details
  6. Merge pull request #88036 from NickHu/prezto

    zsh-prezto: 2019-03-18 -> 2020-05-02
    NickHu authored May 26, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    marsam Mario Rodas
    Copy the full SHA
    1acb028 View commit details
  7. Merge pull request #88651 from r-ryantm/auto-update/profile-sync-daemon

    profile-sync-daemon: 6.38 -> 6.40
    NickHu authored May 26, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    marsam Mario Rodas
    Copy the full SHA
    ebdbc68 View commit details
  8. Merge pull request #88926 from davidtwco/pastel-0.8.0

    pastel: 0.7.1 -> 0.8.0
    marsam authored May 26, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e8c9df0 View commit details
  9. Merge pull request #88932 from r-ryantm/auto-update/parallel

    parallel: 20200422 -> 20200522
    marsam authored May 26, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    dcd6989 View commit details
  10. Merge pull request #88908 from r-ryantm/auto-update/jetty

    jetty: 9.4.26.v20200117 -> 9.4.29.v20200521
    marsam authored May 26, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    612d330 View commit details
4 changes: 4 additions & 0 deletions pkgs/applications/audio/mopidy/default.nix
Original file line number Diff line number Diff line change
@@ -26,6 +26,10 @@ let

mopidy-mpd = callPackage ./mpd.nix { };

mopidy-mpris = callPackage ./mpris.nix { };

mopidy-somafm = callPackage ./somafm.nix { };

mopidy-spotify-tunigo = callPackage ./spotify-tunigo.nix { };

mopidy-youtube = callPackage ./youtube.nix { };
19 changes: 10 additions & 9 deletions pkgs/applications/audio/mopidy/gmusic.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{ stdenv, fetchurl, pythonPackages, mopidy }:
{ stdenv, python3Packages, mopidy }:

pythonPackages.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "mopidy-gmusic";
version = "3.0.0";
version = "4.0.0";

src = fetchurl {
url = "https://github.com/mopidy/mopidy-gmusic/archive/v${version}.tar.gz";
sha256 = "0a2s4xrrhnkv85rx4w5bj6ih9xm34jy0q71fdvbzmi827g9dw5sz";
src = python3Packages.fetchPypi {
inherit version;
pname = "Mopidy-GMusic";
sha256 = "14yswmlfs659rs3k595606m77lw9c6pjykb5pikqw21sb97haxl3";
};

propagatedBuildInputs = [
mopidy
pythonPackages.requests
pythonPackages.gmusicapi
pythonPackages.cachetools
python3Packages.requests
python3Packages.gmusicapi
python3Packages.cachetools
];

doCheck = false;
27 changes: 27 additions & 0 deletions pkgs/applications/audio/mopidy/mpris.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{ stdenv, python3Packages, mopidy }:

python3Packages.buildPythonApplication rec {
pname = "mopidy-mpris";
version = "3.0.1";

src = python3Packages.fetchPypi {
inherit version;
pname = "Mopidy-MPRIS";
sha256 = "0qk46aq5r92qgkldzl41x09naww1gv92l4c4hknyl7yymyvm9lr2";
};

propagatedBuildInputs = [
mopidy
python3Packages.pydbus
];

doCheck = false;

meta = with stdenv.lib; {
homepage = https://www.mopidy.com/;
description = "Mopidy extension for controlling Mopidy through D-Bus using the MPRIS specification";
license = licenses.asl20;
maintainers = [ maintainers.nickhu ];
};
}

26 changes: 26 additions & 0 deletions pkgs/applications/audio/mopidy/somafm.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ stdenv, python3Packages, mopidy }:

python3Packages.buildPythonApplication rec {
pname = "mopidy-somafm";
version = "2.0.0";

src = python3Packages.fetchPypi {
inherit version;
pname = "Mopidy-SomaFM";
sha256 = "1j88rrliys8hqvnb35k1xqw88bvrllcb4rb53lgh82byhscsxlf3";
};

propagatedBuildInputs = [
mopidy
];

doCheck = false;

meta = with stdenv.lib; {
homepage = https://www.mopidy.com/;
description = "Mopidy extension for playing music from SomaFM";
license = licenses.mit;
maintainers = [ maintainers.nickhu ];
};
}

24 changes: 15 additions & 9 deletions pkgs/applications/audio/mopidy/youtube.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
{ stdenv, fetchFromGitHub, pythonPackages, mopidy }:
{ stdenv, python3Packages, mopidy }:

pythonPackages.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "mopidy-youtube";
version = "2.0.2";
version = "3.0";

src = fetchFromGitHub {
owner = "mopidy";
repo = "mopidy-youtube";
rev = "v${version}";
sha256 = "06r3ikyg2ch5n7fbn3sgj04hk6icpfpk1r856qch41995k3bbfg7";
src = python3Packages.fetchPypi {
inherit version;
pname = "Mopidy-YouTube";
sha256 = "0x1q9rfnjx65n6hi8s5rw5ff4xv55h63zy52fwm8aksdnzppr7gd";
};

propagatedBuildInputs = with pythonPackages; [ mopidy pafy ];
patchPhase = "sed s/bs4/beautifulsoup4/ -i setup.cfg";

propagatedBuildInputs = [
mopidy
python3Packages.beautifulsoup4
python3Packages.cachetools
python3Packages.youtube-dl
];

doCheck = false;

6 changes: 3 additions & 3 deletions pkgs/applications/misc/pastel/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "pastel";
version = "0.7.1";
version = "0.8.0";

src = fetchFromGitHub {
owner = "sharkdp";
repo = pname;
rev = "v${version}";
sha256 = "1xrg25w175m2iz7q9v7c05a0p0v5rr71vd4m3v6p0lqvij3sih4s";
sha256 = "00xxrssa3gbr5w2jsqlf632jlzc0lc2rpybnbv618ndy5lxidnw0";
};

cargoSha256 = "17rw9wp9mfv38h0azdjwl60bxdknb5q84ia0a2r1vi91gz6275cs";
cargoSha256 = "1ji64h0f8f2sq12cx33kymypzar9swhaj903gclf3jdwgna77326";

buildInputs = stdenv.lib.optional stdenv.isDarwin Security;

4 changes: 2 additions & 2 deletions pkgs/servers/http/jetty/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "jetty";
version = "9.4.26.v20200117";
version = "9.4.29.v20200521";
src = fetchurl {
url = "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-distribution/${version}/jetty-distribution-${version}.tar.gz";
name = "jetty-distribution-${version}.tar.gz";
sha256 = "0wgh7vap0h6gkz6pk8iycvhwmybyxv25ssinwxxrnzk8jg25g89i";
sha256 = "0ir7rzr5479k7whgy0fx6bjj7x978ghx4fxc64i39hg2kzcp5dbi";
};

phases = [ "unpackPhase" "installPhase" ];
16 changes: 9 additions & 7 deletions pkgs/shells/zsh/zsh-prezto/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
{ stdenv, fetchgit }:
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation {
name = "zsh-prezto-2019-03-18";
src = fetchgit {
url = "https://github.com/sorin-ionescu/prezto";
rev = "1f4601e44c989b90dc7314b151891fa60a101251";
sha256 = "1dcd5r7pc4biiplm0lh7yca0h6hs0xpaq9dwaarmfsh9wrd68350";
stdenv.mkDerivation rec {
pname = "zsh-prezto";
version = "2020-05-20";
src = fetchFromGitHub {
owner = "sorin-ionescu";
repo = "prezto";
rev = "793f239a5e38ef2c4b76a4955bb734520303e8c4";
sha256 = "0xhdl1g0rvlikq6qxh6cwp6wsrgmw4l1rmmq5xpc7wl6dyh35yri";
fetchSubmodules = true;
};
buildPhase = ''
4 changes: 2 additions & 2 deletions pkgs/tools/misc/parallel/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ fetchurl, stdenv, perl, makeWrapper, procps }:

stdenv.mkDerivation rec {
name = "parallel-20200422";
name = "parallel-20200522";

src = fetchurl {
url = "mirror://gnu/parallel/${name}.tar.bz2";
sha256 = "0c2mr2rzsz0y24q4mbm2zmc2fz6bcda4gbc4qgg59sirrj8vzpjb";
sha256 = "10is46v5dpccxibby0zikg1q68mdwpmgdpxk796zka93idd6id29";
};

outputs = [ "out" "man" ];
4 changes: 2 additions & 2 deletions pkgs/tools/misc/profile-sync-daemon/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, utillinux, coreutils}:

stdenv.mkDerivation rec {
version = "6.38";
version = "6.40";
pname = "profile-sync-daemon";

src = fetchurl {
url = "https://github.com/graysky2/profile-sync-daemon/archive/v${version}.tar.gz";
sha256 = "0mhjgd2b3grdaad64b72m8i5rm9k58yx7kpiqmhmd3kl5qlgxagy";
sha256 = "1z1n7dqbkk0x9w2pq71nf93wp4hrzin4a0hcvfynj1khf12z369h";
};

installPhase = ''
6 changes: 3 additions & 3 deletions pkgs/tools/package-management/nix/default.nix
Original file line number Diff line number Diff line change
@@ -210,13 +210,13 @@ in rec {

nixFlakes = lib.lowPrio (callPackage common rec {
name = "nix-2.4${suffix}";
suffix = "pre20200501_941f952";
suffix = "pre20200521_00b562c";

src = fetchFromGitHub {
owner = "NixOS";
repo = "nix";
rev = "941f95284ab57e9baa317791327cf1715d8564b5";
sha256 = "0d99jl5baxji5dmqb4fwmbffx0z04k0naanms5zzbwvxdmzn3yhs";
rev = "00b562c87ec4c3bbe514f5dc1f4d1c41f66f66bf";
hash = "sha256-GqTFh4wBfkKapixKyd3gA9C1tF0PSzZDD5LN+5nQEWk=";
};

crates = fetchurl {
17 changes: 16 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -20846,7 +20846,22 @@ in
python = python3;
};

inherit (mopidyPackages) mopidy mopidy-gmusic mopidy-local-images mopidy-local-sqlite mopidy-spotify mopidy-moped mopidy-mopify mopidy-spotify-tunigo mopidy-youtube mopidy-soundcloud mopidy-musicbox-webclient mopidy-iris mopidy-mpd;
inherit (mopidyPackages)
mopidy
mopidy-gmusic
mopidy-iris
mopidy-local-images
mopidy-local-sqlite
mopidy-moped
mopidy-mopify
mopidy-mpd
mopidy-mpris
mopidy-musicbox-webclient
mopidy-somafm
mopidy-soundcloud
mopidy-spotify
mopidy-spotify-tunigo
mopidy-youtube;

motif = callPackage ../development/libraries/motif { };