mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-09 16:18:34 +01:00
The larger font and shorter test word is making the test far more frequently locally and should stop the hour long runs on hydra
33 lines
723 B
Nix
33 lines
723 B
Nix
{ pkgs, ... }:
|
|
{
|
|
name = "libresprite";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ fgaz ];
|
|
};
|
|
|
|
nodes.machine =
|
|
{ config, pkgs, ... }:
|
|
{
|
|
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 -pointsize 48 +antialias label:'WORKS' image.png")
|
|
machine.execute("libresprite image.png >&2 &")
|
|
machine.wait_for_window("LibreSprite ${pkgs.libresprite.version}-dev")
|
|
machine.wait_for_text("WORKS")
|
|
machine.screenshot("screen")
|
|
'';
|
|
}
|