wayback-x11: init at 0-unstable-2025-07-20 (#426859)

This commit is contained in:
Bobby Rong 2025-07-21 20:21:15 +08:00 committed by GitHub
commit bb65d58d5f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,64 @@
{
fetchFromGitLab,
lib,
libxkbcommon,
meson,
ninja,
pixman,
pkg-config,
scdoc,
stdenv,
unstableGitUpdater,
wayland,
wayland-protocols,
wayland-scanner,
wlroots_0_19,
xwayland,
}:
stdenv.mkDerivation {
pname = "wayback";
version = "0-unstable-2025-07-20";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "wayback";
repo = "wayback";
rev = "4b1b4c59f67a2639e960d6b19e1282cf03fc3660";
hash = "sha256-+4fPMVVPoUAYbt0jgfl+dmt0ZNyGGWF7xuF1UzZ2uiU=";
};
strictDeps = true;
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [
meson
ninja
pkg-config
scdoc
wayland-scanner
];
buildInputs = [
libxkbcommon
pixman
wayland
wayland-protocols
wlroots_0_19
xwayland
];
passthru.updateScript = unstableGitUpdater { };
meta = {
description = "X11 compatibility layer leveraging wlroots and Xwayland";
homepage = "https://wayback.freedesktop.org";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
mainProgram = "wayback-session";
maintainers = with lib.maintainers; [ dramforever ];
};
}