mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
xdotool: Update to upstream version 2.20110530.1.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
c70b942375
commit
08d2f3340d
1 changed files with 4 additions and 4 deletions
|
@ -1,14 +1,14 @@
|
|||
{ stdenv, fetchurl, libX11, perl, libXtst, xextproto, libXi }:
|
||||
{ stdenv, fetchurl, libX11, perl, libXtst, xextproto, libXi, libXinerama }:
|
||||
|
||||
let version = "2.20101012.3049"; in
|
||||
let version = "2.20110530.1"; in
|
||||
stdenv.mkDerivation {
|
||||
name = "xdotool-${version}";
|
||||
src = fetchurl {
|
||||
url = "http://semicomplete.googlecode.com/files/xdotool-${version}.tar.gz";
|
||||
sha256 = "0amkb1zvdk0gj7va3rjw9arbyj8pgprkdik05yl6rghq21q076ls";
|
||||
sha256 = "0rxggg1cy7nnkwidx8x2w3c5f3pk6dh2b6q0q7hp069r3n5jrd77";
|
||||
};
|
||||
|
||||
buildInputs = [ libX11 perl libXtst xextproto libXi ];
|
||||
buildInputs = [ libX11 perl libXtst xextproto libXi libXinerama ];
|
||||
|
||||
configurePhase = ''
|
||||
export makeFlags="PREFIX=$out";
|
||||
|
|
Loading…
Reference in a new issue