mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
29 lines
618 B
Nix
29 lines
618 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.mpv-with-scripts.override {
|
||
|
scripts = [ pkgs.mpvScripts.simple-mpv-webui ];
|
||
|
})
|
||
|
];
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
machine.execute("set -m; mpv --script-opts=webui-port=${port} --idle=yes &")
|
||
|
machine.wait_for_open_port(${port})
|
||
|
assert "<title>simple-mpv-webui" in machine.succeed("curl -s localhost:${port}")
|
||
|
'';
|
||
|
})
|