summary refs log tree commit diff
path: root/pkgs/tools/X11/xnee/default.nix
blob: a35812f22a5386bbe137823fbdb087357993d130 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
args :  
let 
  fetchurl = args.fetchurl;
  lib=args.lib;

  version = lib.attrByPath ["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.";
  };
}