Added keynav.
svn path=/nixpkgs/trunk/; revision=9045
This commit is contained in:
parent
99ab66a124
commit
5708413b42
19
pkgs/tools/X11/keynav/default.nix
Normal file
19
pkgs/tools/X11/keynav/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{stdenv, fetchurl, libX11, xextproto, libXtst, imake,
|
||||
libXi, libXext}:
|
||||
stdenv.mkDerivation {
|
||||
name = "keynav";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.semicomplete.com/projects/keynav/keynav.tar.gz;
|
||||
sha256 = "1b7xppwbl07vrhdp6vszmnhbpsbmqwbna0aymbq5hv315rmkgh20";
|
||||
};
|
||||
|
||||
buildInputs = [libX11 xextproto libXtst imake libXi libXext];
|
||||
|
||||
buildPhase = "xmkmf ; make includes ; touch keynav.man ; make ; ";
|
||||
installFlags = "BINDIR=$(out)/bin MANDIR=$(out)/man ";
|
||||
|
||||
meta ={
|
||||
description = "A tool to generate X11 mouse clicks from keyboard.";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user