2018-12-31 04:40:47 +01:00
|
|
|
{ stdenv, fetchurl, libX11, xorgproto, imake, gccmakedep, libXt, libXmu
|
|
|
|
, libXaw, libXext, libSM, libICE, libXpm, libXp
|
2015-06-15 14:29:42 +02:00
|
|
|
}:
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2015-06-15 14:29:42 +02:00
|
|
|
name = "vncrec-0.2"; # version taken from Arch AUR
|
2009-08-07 14:00:00 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://ronja.twibright.com/utils/vncrec-twibright.tgz";
|
|
|
|
sha256 = "1yp6r55fqpdhc8cgrgh9i0mzxmkls16pgf8vfcpng1axr7cigyhc";
|
|
|
|
};
|
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-07 21:56:33 +01:00
|
|
|
|
2018-11-28 04:47:45 +01:00
|
|
|
nativeBuildInputs = [ imake gccmakedep ];
|
2015-06-15 14:29:42 +02:00
|
|
|
buildInputs = [
|
2018-12-31 04:40:47 +01:00
|
|
|
libX11 xorgproto libXt libXmu libXaw
|
|
|
|
libXext libSM libICE libXpm libXp
|
2015-06-15 14:29:42 +02:00
|
|
|
];
|
2009-08-07 14:00:00 +02:00
|
|
|
|
2018-11-28 04:47:45 +01:00
|
|
|
makeFlags = [
|
|
|
|
"BINDIR=${placeholder "out"}/bin"
|
|
|
|
"MANDIR=${placeholder "out"}/share/man"
|
|
|
|
];
|
2019-11-04 13:33:53 +01:00
|
|
|
installTargets = [ "install" "install.man" ];
|
2015-09-15 06:27:19 +02:00
|
|
|
|
2009-08-07 14:00:00 +02:00
|
|
|
meta = {
|
|
|
|
description = "VNC recorder";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://ronja.twibright.com/utils/vncrec/";
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2018-08-04 16:10:58 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2009-08-07 14:00:00 +02:00
|
|
|
};
|
|
|
|
}
|