nixpkgs/pkgs/tools/X11/x2vnc/default.nix

24 lines
556 B
Nix
Raw Normal View History

{ stdenv, fetchurl, xorg }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
name = "x2vnc-1.7.2";
src = fetchurl {
url = https://fredrik.hubbe.net/x2vnc/x2vnc-1.7.2.tar.gz;
sha256 = "00bh9j3m6snyd2fgnzhj5vlkj9ibh69gfny9bfzlxbnivb06s1yw";
};
buildInputs = with xorg; [
libX11 xorgproto libXext libXrandr
];
2016-08-05 18:09:35 +00:00
hardeningDisable = [ "format" ];
2018-09-12 19:45:57 +00:00
meta = with stdenv.lib; {
homepage = http://fredrik.hubbe.net/x2vnc.html;
description = "A program to control a remote VNC server";
2018-09-12 19:45:57 +00:00
platforms = platforms.unix;
license = licenses.gpl2;
};
}