907bb1aac6
* libdbi / libdbi-drivers: updated to 0.8.3, and make it compile with SQLite. * qemu-image: fix the URL. * gdmap: make it build again (requires an older GTK+). * rlwrap: updated to 0.37. * smbfs-fuse -> fusesmb to match the upstream name. * x11vnc: updated to 0.9.10. * clearlyU: fix the URL. * Various packages: follow the coding conventions. svn path=/nixpkgs/trunk/; revision=22814
23 lines
520 B
Nix
23 lines
520 B
Nix
{ stdenv, fetchurl, xorg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "x2vnc-1.7.2";
|
|
|
|
src = fetchurl {
|
|
url = http://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
|
|
];
|
|
|
|
preInstall = "ensureDir $out";
|
|
|
|
meta = {
|
|
homepahe = http://fredrik.hubbe.net/x2vnc.html;
|
|
description = "A program to control a remote VNC server";
|
|
};
|
|
}
|