mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
25 lines
468 B
Nix
25 lines
468 B
Nix
{ ... }:
|
|
{
|
|
name = "tuxguitar";
|
|
meta.maintainers = [ ];
|
|
|
|
nodes.machine =
|
|
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./common/x11.nix
|
|
];
|
|
|
|
services.xserver.enable = true;
|
|
|
|
environment.systemPackages = [ pkgs.tuxguitar ];
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_x()
|
|
machine.succeed("tuxguitar >&2 &")
|
|
machine.wait_for_window("TuxGuitar - Untitled.tg")
|
|
machine.sleep(1)
|
|
machine.screenshot("tuxguitar")
|
|
'';
|
|
}
|