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

34 lines
891 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libX11, xorgproto, imake, gccmakedep, libXt, libXmu
, libXaw, libXext, libSM, libICE, libXpm, libXp
2015-06-15 13:29:42 +01:00
}:
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
2015-06-15 13:29:42 +01:00
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 = [
libX11 xorgproto libXt libXmu libXaw
libXext libSM libICE libXpm libXp
2015-06-15 13:29:42 +01:00
];
2018-11-28 03:47:45 +00:00
makeFlags = [
"BINDIR=${placeholder "out"}/bin"
"MANDIR=${placeholder "out"}/share/man"
];
2019-11-04 12:33:53 +00:00
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;
};
}