about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/X11/x2vnc/default.nix
blob: cb01d0a4d4a41e4f4f30c9a4542125b4dfe11c89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, xorg }:

stdenv.mkDerivation rec {
  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
    ];

  hardeningDisable = [ "format" ];

  meta = with stdenv.lib; {
    homepage = http://fredrik.hubbe.net/x2vnc.html;
    description = "A program to control a remote VNC server";
    platforms = platforms.unix;
    license = licenses.gpl2;
  };
}