nixpkgs/pkgs/tools/X11/x2vnc/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

24 lines
566 B
Nix

{ 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 =
[ xorg.libX11 xorg.xproto xorg.xextproto xorg.libXext
xorg.libXrandr xorg.randrproto
];
hardeningDisable = [ "format" ];
meta = {
homepage = http://fredrik.hubbe.net/x2vnc.html;
description = "A program to control a remote VNC server";
platforms = stdenv.lib.platforms.unix;
};
}