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: 7eddc92374f8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4d9899ef13aa
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Nov 13, 2019

  1. mpc: 0.28 -> 0.31

    peterhoeg authored and fpletz committed Nov 13, 2019

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    1eea0f5 View commit details
  2. nixos/tests: fix mpd test

    fpletz committed Nov 13, 2019
    Copy the full SHA
    4d9899e View commit details
Showing with 49 additions and 35 deletions.
  1. +42 −28 nixos/tests/mpd.nix
  2. +4 −6 pkgs/applications/audio/mpc/default.nix
  3. +3 −1 pkgs/top-level/all-packages.nix
70 changes: 42 additions & 28 deletions nixos/tests/mpd.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ./make-test.nix ({ pkgs, ... }:
import ./make-test.nix ({ pkgs, lib, ... }:
let
track = pkgs.fetchurl {
# Sourced from http://freemusicarchive.org/music/Blue_Wave_Theory/Surf_Music_Month_Challenge/Skyhawk_Beach_fade_in
@@ -46,38 +46,51 @@ import ./make-test.nix ({ pkgs, ... }:
};

nodes =
{ client =
{ client =
{ ... }: { };

serverALSA =
{ ... }: (mkServer {
mpd = defaultMpdCfg // {
network.listenAddress = "any";
extraConfig = ''
audio_output {
type "alsa"
name "ALSA"
mixer_type "null"
}
'';
};

musicService = with defaultMpdCfg; musicService { inherit user group musicDirectory; };
}) // { networking.firewall.allowedTCPPorts = [ 6600 ]; };
{ ... }: lib.mkMerge [
(mkServer {
mpd = defaultMpdCfg // {
network.listenAddress = "any";
extraConfig = ''
audio_output {
type "alsa"
name "ALSA"
mixer_type "null"
}
'';
};
musicService = with defaultMpdCfg; musicService { inherit user group musicDirectory; };
})
{ networking.firewall.allowedTCPPorts = [ 6600 ]; }
];

serverPulseAudio =
{ ... }: (mkServer {
mpd = defaultMpdCfg // {
extraConfig = ''
audio_output {
type "pulse"
name "The Pulse"
}
'';
};

musicService = with defaultCfg; musicService { inherit user group musicDirectory; };
}) // { hardware.pulseaudio.enable = true; };
{ ... }: lib.mkMerge [
(mkServer {
mpd = defaultMpdCfg // {
extraConfig = ''
audio_output {
type "pulse"
name "The Pulse"
}
'';
};

musicService = with defaultCfg; musicService { inherit user group musicDirectory; };
})
{
hardware.pulseaudio = {
enable = true;
systemWide = true;
tcp.enable = true;
tcp.anonymousClients.allowAll = true;
};
systemd.services.mpd.environment.PULSE_SERVER = "localhost";
}
];
};

testScript = ''
@@ -110,6 +123,7 @@ import ./make-test.nix ({ pkgs, ... }:
play_some_music($serverALSA);
play_some_music($serverPulseAudio);
$client->waitForUnit("multi-user.target");
$client->succeed("$mpc -h serverALSA status");
# The PulseAudio-based server is configured not to accept external client connections
10 changes: 4 additions & 6 deletions pkgs/applications/audio/mpc/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, mpd_clientlib }:
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, mpd_clientlib, sphinx }:

stdenv.mkDerivation rec {
pname = "mpc";
version = "0.28";
version = "0.31";

src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = "mpc";
rev = "v${version}";
sha256 = "1g8i4q5xsqdhidyjpvj6hzbhxacv27cb47ndv9k68whd80c5f9n9";
sha256 = "06wn5f24bgkqmhh2p8rbizmqibzqr4x1q7c6zl0pfq7mdy49g5ds";
};

buildInputs = [ mpd_clientlib ];

nativeBuildInputs = [ autoreconfHook pkgconfig ];

enableParallelBuilding = true;
nativeBuildInputs = [ meson ninja pkgconfig sphinx ];

meta = with stdenv.lib; {
description = "A minimalist command line interface to MPD";
4 changes: 3 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -19996,7 +19996,9 @@ in

mpg321 = callPackage ../applications/audio/mpg321 { };

mpc_cli = callPackage ../applications/audio/mpc { };
mpc_cli = callPackage ../applications/audio/mpc {
inherit (python3Packages) sphinx;
};

clerk = callPackage ../applications/audio/clerk { };