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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
610 B
Nix
Raw Normal View History

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