9fd41a9a5b
* tuxguitar: Ensure that tuxguitar is launched with java 8 comtabilbe jre and libraries as greate java version is not supported * tuxguitar: Added test to verify application starts without problems * tuxguitar: 1.5.2 -> 1.5.4
25 lines
524 B
Nix
25 lines
524 B
Nix
import ./make-test-python.nix ({ pkgs, ... }: {
|
|
name = "tuxguitar";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ asbachb ];
|
|
};
|
|
|
|
machine = { config, pkgs, ... }: {
|
|
imports = [
|
|
./common/x11.nix
|
|
];
|
|
|
|
services.xserver.enable = true;
|
|
|
|
environment.systemPackages = [ pkgs.tuxguitar ];
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_x()
|
|
machine.succeed("tuxguitar &")
|
|
machine.wait_for_window("TuxGuitar - Untitled.tg")
|
|
machine.sleep(1)
|
|
machine.screenshot("tuxguitar")
|
|
'';
|
|
})
|