Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
671 B
Nix
36 lines
671 B
Nix
{
|
|
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";
|
|
};
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-std=gnu89";
|
|
|
|
buildInputs = with xorg; [
|
|
libX11
|
|
xorgproto
|
|
libXext
|
|
libXrandr
|
|
];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://fredrik.hubbe.net/x2vnc.html";
|
|
description = "Program to control a remote VNC server";
|
|
platforms = platforms.unix;
|
|
license = licenses.gpl2Plus;
|
|
mainProgram = "x2vnc";
|
|
};
|
|
}
|