librewolf: 132.0.1 -> 132.0.1-1 (#355483)
[NixPkgs.git] / pkgs / by-name / xa / xautomation / package.nix
bloba1fb8817632562d63cc13ab7c037d52b679b98ab
1 { lib, stdenv, fetchurl, pkg-config, libpng, libX11, libXext, libXi, libXtst }:
3 stdenv.mkDerivation rec {
4   pname = "xautomation";
5   version = "1.09";
6   src = fetchurl {
7     url = "https://www.hoopajoo.net/static/projects/xautomation-${version}.tar.gz";
8     sha256 = "03azv5wpg65h40ip2kk1kdh58vix4vy1r9bihgsq59jx2rhjr3zf";
9   };
11   nativeBuildInputs = [ pkg-config ];
12   buildInputs = [ libpng libX11 libXext libXi libXtst ];
14   meta = {
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;
20   };