mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
739c51ae4e
Avoids blocking on stdout.
29 lines
623 B
Nix
29 lines
623 B
Nix
import ./make-test-python.nix ({ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
port = toString 4321;
|
|
in
|
|
{
|
|
name = "mpv";
|
|
meta.maintainers = with maintainers; [ zopieux ];
|
|
|
|
nodes.machine =
|
|
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = [
|
|
pkgs.curl
|
|
(pkgs.wrapMpv pkgs.mpv-unwrapped {
|
|
scripts = [ pkgs.mpvScripts.simple-mpv-webui ];
|
|
})
|
|
];
|
|
};
|
|
|
|
testScript = ''
|
|
machine.execute("set -m; mpv --script-opts=webui-port=${port} --idle=yes >&2 &")
|
|
machine.wait_for_open_port(${port})
|
|
assert "<title>simple-mpv-webui" in machine.succeed("curl -s localhost:${port}")
|
|
'';
|
|
})
|