nixpkgs/pkgs/tools/video/vncrec/default.nix

34 lines
902 B
Nix
Raw Normal View History

2015-06-15 13:29:42 +01: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
src = fetchurl {
url = "http://ronja.twibright.com/utils/vncrec-twibright.tgz";
sha256 = "1yp6r55fqpdhc8cgrgh9i0mzxmkls16pgf8vfcpng1axr7cigyhc";
};
hardeningDisable = [ "format" ];
2016-02-07 20:56:33 +00:00
2018-11-28 03:47:45 +00:00
nativeBuildInputs = [ imake gccmakedep ];
2015-06-15 13:29:42 +01:00
buildInputs = [
2018-11-28 03:47:45 +00:00
libX11 xproto libXt libXmu libXaw
2015-06-15 13:29:42 +01:00
libXext xextproto libSM libICE libXpm libXp
];
2018-11-28 03:47:45 +00:00
makeFlags = [
"BINDIR=${placeholder "out"}/bin"
"MANDIR=${placeholder "out"}/share/man"
];
installTargets = "install install.man";
meta = {
description = "VNC recorder";
homepage = http://ronja.twibright.com/utils/vncrec/;
platforms = stdenv.lib.platforms.linux;
2018-08-04 15:10:58 +01:00
license = stdenv.lib.licenses.gpl2;
};
}