summary refs log tree commit diff
path: root/pkgs/tools/X11/xmacro/default.nix
blob: 12bb2903107cb4b1e04209a05719c400fa095d48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, libX11, libXtst, xextproto, libXi, inputproto }:

stdenv.mkDerivation {
  name = "xmacro-0.3pre20000911";

  src = fetchurl {
    url = mirror://sourceforge/xmacro/xmacro-pre0.3-20000911.tar.gz;
    md5 = "d2956b82f3d5380e58a75ccc721fb746";
  };

  preBuild = ''
    sed -e 's/-pedantic//g' -i Makefile
    sed -e 's/iostream[.]h/iostream/' -i *.cpp
    sed -e 's/iomanip[.]h/iomanip/' -i *.cpp
    sed -e '1iusing namespace std;' -i *.cpp
  '';

  preInstall = "echo -e 'install:\n	mkdir \${out}/bin;\n	cp xmacrorec xmacrorec2 xmacroplay \${out}/bin;' >>Makefile; ";

  buildInputs = [ libX11 libXtst xextproto libXi inputproto ];
}