2021-11-18 18:10:48 +00:00
|
|
|
import ./make-test-python.nix (
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
name = "libresprite";
|
|
|
|
meta = with pkgs.lib.maintainers; {
|
|
|
|
maintainers = [ fgaz ];
|
|
|
|
};
|
|
|
|
|
2022-03-20 23:15:30 +00:00
|
|
|
nodes.machine =
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
2021-11-18 18:10:48 +00:00
|
|
|
imports = [
|
|
|
|
./common/x11.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
services.xserver.enable = true;
|
|
|
|
environment.systemPackages = [
|
|
|
|
pkgs.imagemagick
|
|
|
|
pkgs.libresprite
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
enableOCR = true;
|
|
|
|
|
|
|
|
testScript = ''
|
|
|
|
machine.wait_for_x()
|
|
|
|
machine.succeed("convert -font DejaVu-Sans +antialias label:'IT WORKS' image.png")
|
|
|
|
machine.execute("libresprite image.png >&2 &")
|
2024-11-17 14:07:57 +00:00
|
|
|
machine.wait_for_window("LibreSprite ${pkgs.libresprite.version}-dev")
|
2021-11-18 18:10:48 +00:00
|
|
|
machine.wait_for_text("IT WORKS")
|
|
|
|
machine.screenshot("screen")
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
)
|