3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/X11/xautomation/default.nix

23 lines
793 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libpng, libX11, libXext, libXi, libXtst }:
2017-07-11 19:43:04 +01:00
let version = "1.09"; in
stdenv.mkDerivation {
2019-08-13 22:52:01 +01:00
pname = "xautomation";
inherit version;
2017-07-11 19:43:04 +01:00
src = fetchurl {
url = "https://www.hoopajoo.net/static/projects/xautomation-${version}.tar.gz";
sha256 = "03azv5wpg65h40ip2kk1kdh58vix4vy1r9bihgsq59jx2rhjr3zf";
};
nativeBuildInputs = [ pkg-config ];
2017-07-11 19:43:04 +01:00
buildInputs = [ libpng libX11 libXext libXi libXtst ];
meta = {
homepage = "https://www.hoopajoo.net/projects/xautomation.html";
2017-07-11 19:43:04 +01:00
description = "Control X from the command line for scripts, and do \"visual scraping\" to find things on the screen";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ vaibhavsagar ];
platforms = with lib.platforms; linux;
2017-07-11 19:43:04 +01:00
};
}