about summary refs log tree commit diff
path: root/pkgs/tools/video/vncrec/default.nix
blob: e37d1c6f11ff5061242db84d789bccd165deb560 (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
32
33
34
35
36
37
38
39
40
41
42
a @ {imake, libX11, xproto, gccmakedep, libXt
, libXmu, libXaw, libXext, xextproto, libSM, libICE, libXpm
, libXp, ...} :
let
  fetchurl = a.fetchurl;

  buildInputs = with a; [
    libX11 xproto imake gccmakedep libXt libXmu libXaw
    libXext xextproto libSM libICE libXpm libXp
  ];
in
rec {
  src = fetchurl {
    url = "http://ronja.twibright.com/utils/vncrec-twibright.tgz";
    sha256 = "1yp6r55fqpdhc8cgrgh9i0mzxmkls16pgf8vfcpng1axr7cigyhc";
  };

  inherit buildInputs;
  makeFlags = [
    "World"
    ];
  installFlags=[
    "BINDIR=/bin/"
    "MANDIR=/share/man/man1"
    "DESTDIR=$out"
    "install.man"
    ];

  phaseNames = ["doXMKMF" "doMakeInstall"];

  doXMKMF = a.fullDepEntry (''
    xmkmf
  '') ["doUnpack" "minInit" "addInputs"];

  name = "vncrec-0.2"; # version taken from Arch AUR
  meta = {
    description = "VNC recorder";
    homepage = http://ronja.twibright.com/utils/vncrec/;
    maintainers = [
    ];
  };
}