go-musicfox: 4.5.7 -> 4.6.0 (#364326)
[NixPkgs.git] / pkgs / by-name / xa / xautomation / package.nix
blobe79aa9e14e6fa51a3d02df07f9cb3b9d70d8ae56
2   lib,
3   stdenv,
4   fetchurl,
5   pkg-config,
6   libpng,
7   libX11,
8   libXext,
9   libXi,
10   libXtst,
13 stdenv.mkDerivation rec {
14   pname = "xautomation";
15   version = "1.09";
16   src = fetchurl {
17     url = "https://www.hoopajoo.net/static/projects/xautomation-${version}.tar.gz";
18     sha256 = "03azv5wpg65h40ip2kk1kdh58vix4vy1r9bihgsq59jx2rhjr3zf";
19   };
21   nativeBuildInputs = [ pkg-config ];
22   buildInputs = [
23     libpng
24     libX11
25     libXext
26     libXi
27     libXtst
28   ];
30   meta = {
31     homepage = "https://www.hoopajoo.net/projects/xautomation.html";
32     description = "Control X from the command line for scripts, and do \"visual scraping\" to find things on the screen";
33     license = lib.licenses.gpl2Plus;
34     maintainers = with lib.maintainers; [ vaibhavsagar ];
35     platforms = with lib.platforms; linux;
36   };