67 lines
1.3 KiB
Nix
67 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchzip,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
python3,
|
|
python3Packages,
|
|
wayland-scanner,
|
|
libxkbcommon,
|
|
mesa,
|
|
pixman,
|
|
xorg,
|
|
wayland,
|
|
gtest,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "sommelier";
|
|
version = "126.0";
|
|
|
|
src = fetchzip rec {
|
|
url = "https://chromium.googlesource.com/chromiumos/platform2/+archive/${passthru.rev}/vm_tools/sommelier.tar.gz";
|
|
passthru.rev = "fd3798efe23f2edbc48f86f2fbd82ba5059fd875";
|
|
stripRoot = false;
|
|
sha256 = "BmWZnMcK7IGaEAkVPulyb3hngsmuI0D1YtQEbqMjV5c=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
python3Packages.jinja2
|
|
wayland-scanner
|
|
];
|
|
buildInputs = [
|
|
libxkbcommon
|
|
mesa
|
|
pixman
|
|
wayland
|
|
xorg.libxcb
|
|
];
|
|
|
|
preConfigure = ''
|
|
patchShebangs gen-shim.py
|
|
'';
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [ gtest ];
|
|
|
|
postInstall = ''
|
|
rm $out/bin/sommelier_test # why does it install the test binary? o_O
|
|
'';
|
|
|
|
passthru.updateScript = ./update.py;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://chromium.googlesource.com/chromiumos/platform2/+/refs/heads/main/vm_tools/sommelier/";
|
|
description = "Nested Wayland compositor with support for X11 forwarding";
|
|
maintainers = with maintainers; [ qyliss ];
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
mainProgram = "sommelier";
|
|
};
|
|
}
|