2015-06-15 05:29:42 -07:00
|
|
|
{ stdenv, fetchurl, libX11, xproto, imake, gccmakedep, libXt, libXmu
|
|
|
|
, libXaw, libXext, xextproto, libSM, libICE, libXpm, libXp
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "vncrec-0.2"; # version taken from Arch AUR
|
2009-08-07 05:00:00 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://ronja.twibright.com/utils/vncrec-twibright.tgz";
|
|
|
|
sha256 = "1yp6r55fqpdhc8cgrgh9i0mzxmkls16pgf8vfcpng1axr7cigyhc";
|
|
|
|
};
|
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-07 12:56:33 -08:00
|
|
|
|
2015-06-15 05:29:42 -07:00
|
|
|
buildInputs = [
|
|
|
|
libX11 xproto imake gccmakedep libXt libXmu libXaw
|
|
|
|
libXext xextproto libSM libICE libXpm libXp
|
|
|
|
];
|
2009-08-07 05:00:00 -07:00
|
|
|
|
2015-06-15 05:29:42 -07:00
|
|
|
buildPhase = ''xmkmf && make World'';
|
2009-08-07 05:00:00 -07:00
|
|
|
|
2015-06-15 05:29:42 -07:00
|
|
|
installPhase = ''
|
|
|
|
make DESTDIR=$out BINDIR=/bin MANDIR=/share/man/man1 install install.man
|
|
|
|
'';
|
2015-09-14 21:27:19 -07:00
|
|
|
|
2009-08-07 05:00:00 -07:00
|
|
|
meta = {
|
|
|
|
description = "VNC recorder";
|
2013-06-06 17:13:54 -07:00
|
|
|
homepage = http://ronja.twibright.com/utils/vncrec/;
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-08-07 05:00:00 -07:00
|
|
|
};
|
|
|
|
}
|