Added xnee utility for X11 action recording
svn path=/nixpkgs/trunk/; revision=12612
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
args :
|
||||
let
|
||||
fetchurl = args.fetchurl;
|
||||
lib=args.lib;
|
||||
|
||||
version = lib.getAttr ["version"] "3.01" args;
|
||||
buildInputs = with args; [
|
||||
libX11 xproto libXext xextproto libXtst gtk
|
||||
libXi inputproto pkgconfig recordproto
|
||||
];
|
||||
in
|
||||
rec {
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/xnee/Xnee-${version}.tar.gz";
|
||||
sha256 = "1g6wq1hjrmx102gg768nfs8a1ck77g5fn4pmprpsz9123xl4d181";
|
||||
};
|
||||
|
||||
inherit buildInputs;
|
||||
configureFlags = [
|
||||
"--disable-gnome-applet"
|
||||
];
|
||||
|
||||
/* doConfigure should be specified separately */
|
||||
phaseNames = ["doConfigure" "doMakeInstall"];
|
||||
|
||||
name = "xnee-" + version;
|
||||
meta = {
|
||||
description = "X event recording and replay tool.";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user