1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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.1";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "wayback";
repo = "wayback";
rev = "156d7a86d112cd1bd70c2f75cb190fdd98565080";
hash = "sha256-A4Ur32QZc0foS+O+jfQCug0k32nvYkB2MoacDT4W7dQ=";
};
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 ];
};
}
|