mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
parent
d3f5b059bb
commit
faa19418f5
2 changed files with 129 additions and 131 deletions
|
@ -829,7 +829,7 @@ in
|
||||||
mosquitto = runTest ./mosquitto.nix;
|
mosquitto = runTest ./mosquitto.nix;
|
||||||
moosefs = handleTest ./moosefs.nix { };
|
moosefs = handleTest ./moosefs.nix { };
|
||||||
movim = import ./web-apps/movim { inherit recurseIntoAttrs runTest; };
|
movim = import ./web-apps/movim { inherit recurseIntoAttrs runTest; };
|
||||||
mpd = handleTest ./mpd.nix { };
|
mpd = runTest ./mpd.nix;
|
||||||
mpv = runTest ./mpv.nix;
|
mpv = runTest ./mpv.nix;
|
||||||
mtp = handleTest ./mtp.nix { };
|
mtp = handleTest ./mtp.nix { };
|
||||||
multipass = handleTest ./multipass.nix { };
|
multipass = handleTest ./multipass.nix { };
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
import ./make-test-python.nix (
|
{ pkgs, lib, ... }:
|
||||||
{ pkgs, lib, ... }:
|
let
|
||||||
let
|
|
||||||
track = pkgs.fetchurl {
|
track = pkgs.fetchurl {
|
||||||
# Sourced from http://freemusicarchive.org/music/Blue_Wave_Theory/Surf_Music_Month_Challenge/Skyhawk_Beach_fade_in
|
# Sourced from http://freemusicarchive.org/music/Blue_Wave_Theory/Surf_Music_Month_Challenge/Skyhawk_Beach_fade_in
|
||||||
|
|
||||||
|
@ -54,8 +53,8 @@ import ./make-test-python.nix (
|
||||||
services.mpd = mpd;
|
services.mpd = mpd;
|
||||||
systemd.services.musicService = musicService;
|
systemd.services.musicService = musicService;
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
name = "mpd";
|
name = "mpd";
|
||||||
meta = {
|
meta = {
|
||||||
maintainers = with lib.maintainers; [ emmanuelrosa ];
|
maintainers = with lib.maintainers; [ emmanuelrosa ];
|
||||||
|
@ -146,5 +145,4 @@ import ./make-test-python.nix (
|
||||||
# to perform the following test:
|
# to perform the following test:
|
||||||
client.fail(f"{mpc} -h serverPulseAudio status")
|
client.fail(f"{mpc} -h serverPulseAudio status")
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
)
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue