Adding xdotool
svn path=/nixpkgs/trunk/; revision=26896
This commit is contained in:
parent
b2c4b433b4
commit
167912d19e
24
pkgs/tools/X11/xdotool/default.nix
Normal file
24
pkgs/tools/X11/xdotool/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchurl, libX11, perl, libXtst, xextproto, libXi }:
|
||||||
|
|
||||||
|
let version = "2.20101012.3049"; in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "xdotool-${version}";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://semicomplete.googlecode.com/files/xdotool-${version}.tar.gz";
|
||||||
|
sha256 = "0amkb1zvdk0gj7va3rjw9arbyj8pgprkdik05yl6rghq21q076ls";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libX11 perl libXtst xextproto libXi ];
|
||||||
|
|
||||||
|
configurePhase = ''
|
||||||
|
export makeFlags="PREFIX=$out";
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://www.semicomplete.com/projects/xdotool/;
|
||||||
|
description = "Fake keyboard/mouse input, window management, and more";
|
||||||
|
license = "BSD";
|
||||||
|
maintainers = with stdenv.lib.maintainers; [viric];
|
||||||
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
|
};
|
||||||
|
}
|
@ -6998,6 +6998,8 @@ let
|
|||||||
|
|
||||||
xdg_utils = callPackage ../tools/X11/xdg-utils { };
|
xdg_utils = callPackage ../tools/X11/xdg-utils { };
|
||||||
|
|
||||||
|
xdotool = callPackage ../tools/X11/xdotool { };
|
||||||
|
|
||||||
xen = callPackage ../applications/virtualization/xen { };
|
xen = callPackage ../applications/virtualization/xen { };
|
||||||
|
|
||||||
xfig = callPackage ../applications/graphics/xfig {
|
xfig = callPackage ../applications/graphics/xfig {
|
||||||
|
Loading…
Reference in New Issue
Block a user