1 { lib, stdenv, fetchurl, pkg-config, libpng, libX11, libXext, libXi, libXtst }:
3 stdenv.mkDerivation rec {
7 url = "https://www.hoopajoo.net/static/projects/xautomation-${version}.tar.gz";
8 sha256 = "03azv5wpg65h40ip2kk1kdh58vix4vy1r9bihgsq59jx2rhjr3zf";
11 nativeBuildInputs = [ pkg-config ];
12 buildInputs = [ libpng libX11 libXext libXi libXtst ];
15 homepage = "https://www.hoopajoo.net/projects/xautomation.html";
16 description = "Control X from the command line for scripts, and do \"visual scraping\" to find things on the screen";
17 license = lib.licenses.gpl2Plus;
18 maintainers = with lib.maintainers; [ vaibhavsagar ];
19 platforms = with lib.platforms; linux;