125 lines
2.2 KiB
Nix
125 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
arcan,
|
|
audit,
|
|
dbus,
|
|
libepoxy,
|
|
fontutil,
|
|
libGL,
|
|
libX11,
|
|
libXau,
|
|
libXdmcp,
|
|
libXfont2,
|
|
libdrm,
|
|
libgcrypt,
|
|
libmd,
|
|
libselinux,
|
|
libtirpc,
|
|
libxcb,
|
|
libxkbfile,
|
|
libxshmfence,
|
|
mesa,
|
|
meson,
|
|
nettle,
|
|
ninja,
|
|
openssl,
|
|
pixman,
|
|
pkg-config,
|
|
systemd,
|
|
xcbutil,
|
|
xcbutilwm,
|
|
xcbutilimage,
|
|
xkbcomp,
|
|
xkeyboard_config,
|
|
xorgproto,
|
|
xtrans,
|
|
unstableGitUpdater,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalPackages: {
|
|
pname = "xarcan";
|
|
version = "0-unstable-2024-08-26";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "letoram";
|
|
repo = "xarcan";
|
|
rev = "5672116f627de492fb4df0b33d36b78041cd3931";
|
|
hash = "sha256-xZX6uLs/H/wONKrUnYxSynHK7CL7FDfzWvSjtXxT8es=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
arcan
|
|
audit
|
|
dbus
|
|
libepoxy
|
|
fontutil
|
|
libGL
|
|
libX11
|
|
libXau
|
|
libXdmcp
|
|
libXfont2
|
|
libdrm
|
|
libgcrypt
|
|
libmd
|
|
libselinux
|
|
libtirpc
|
|
libxcb
|
|
libxkbfile
|
|
libxshmfence
|
|
mesa
|
|
nettle
|
|
openssl
|
|
pixman
|
|
systemd
|
|
xcbutil
|
|
xcbutilwm
|
|
xcbutilimage
|
|
xkbcomp
|
|
xkeyboard_config
|
|
xorgproto
|
|
xtrans
|
|
];
|
|
|
|
configureFlags = [
|
|
"--disable-int10-module"
|
|
"--disable-static"
|
|
"--disable-xnest"
|
|
"--disable-xorg"
|
|
"--disable-xvfb"
|
|
"--disable-xwayland"
|
|
"--enable-glamor"
|
|
"--enable-glx"
|
|
"--enable-ipv6"
|
|
"--enable-kdrive"
|
|
"--enable-record"
|
|
"--enable-xarcan"
|
|
"--enable-xcsecurity"
|
|
"--with-xkb-bin-directory=${xkbcomp}/bin"
|
|
"--with-xkb-output=/tmp"
|
|
"--with-xkb-path=${xkeyboard_config}/share/X11/xkb"
|
|
];
|
|
|
|
passthru.updateScript = unstableGitUpdater { };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/letoram/letoram";
|
|
description = "Patched Xserver that bridges connections to Arcan";
|
|
mainProgram = "Xarcan";
|
|
longDescription = ''
|
|
xarcan is a patched X server with a KDrive backend that uses the
|
|
arcan-shmif to map Xlib/Xcb/X clients to a running arcan instance. It
|
|
allows running an X session as a window under Arcan.
|
|
'';
|
|
license = with lib.licenses; [ mit ];
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|