Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
324 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
import ../make-test-python.nix (
{ pkgs, ... }:
{
name = "timidity";
nodes.machine =
{ pkgs, ... }:
{
environment.systemPackages = [ pkgs.timidity ];
};
testScript = ''
start_all ()
## TiMidity++ is around.
machine.succeed("command -v timidity")
'';
}
)