summary refs log tree commit diff
path: root/pkgs/tools/X11/xmacro/default.nix
blob: 758bf1729b174bcfa3549421096a7c084cddafdd (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
{ 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;
    sha256 = "04gzgxhp8bx98zrcvmsm7mn72r9g9588skbf64cqvkp4yz6kfqhb";
  };

  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 ];

  meta = {
    platforms = stdenv.lib.platforms.linux;
  };
}