nixpkgs/pkgs/applications/window-managers/sommelier/default.nix
Alyssa Ross be430239ce sommelier: init at 104.0
Since virtio-gpu context types are now in upstream kernels, it is now
possible to use Sommelier without patching it or using custom kernels,
so I think it's finally suitable for inclusion in Nixpkgs.

I'm using the same versioning scheme I made up for crosvm here.
Figuring out the version is handled by the update script, which I
adapted from the crosvm one.  Sadly there's too many differences
between them to easily merge them into one, so reducing duplication
between them is left as further work.

Closes: https://github.com/NixOS/nixpkgs/pull/95874
2022-08-06 06:38:25 +00:00

36 lines
1.1 KiB
Nix

{ lib, stdenv, fetchzip, meson, ninja, pkg-config, wayland-scanner
, libxkbcommon, mesa, pixman, xorg, wayland, gtest
}:
stdenv.mkDerivation {
pname = "sommelier";
version = "104.0";
src = fetchzip rec {
url = "https://chromium.googlesource.com/chromiumos/platform2/+archive/${passthru.rev}/vm_tools/sommelier.tar.gz";
passthru.rev = "af5434fd9903936a534e1316cbd22361e67949ec";
stripRoot = false;
sha256 = "LungQqHQorHIKpye2SDBLuMHPt45C1cPYcs9o5Hc3cw=";
};
nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ];
buildInputs = [ libxkbcommon mesa pixman wayland xorg.libxcb ];
doCheck = true;
checkInputs = [ 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;
};
}