7247d3fe7c
Release announcement: https://lists.freedesktop.org/archives/wayland-devel/2023-July/042836.html > This release includes 3 new staging protocols: > > * ext-foreign-toplevel-list - get information about toplevels, > * security-context-v1 - allow race free identification of sandboxed > clients, > * cursor-shape-v1 - set cursor sprite using a shape enum instead of > surface. > > The xdg-shell protocol also now has a 'suspended' toplevel state, > usually sent when a toplevel is "out of sight" to the user, meant > to communicate to a toplevel can for example take power saving measures. > > This release also include the usual set of straightening of question > marks and clarifications of ambiguities.
45 lines
1.5 KiB
Nix
45 lines
1.5 KiB
Nix
{ lib, stdenv, fetchurl
|
|
, pkg-config
|
|
, meson, ninja, wayland-scanner
|
|
, python3, wayland
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wayland-protocols";
|
|
version = "1.32";
|
|
|
|
# https://gitlab.freedesktop.org/wayland/wayland-protocols/-/issues/48
|
|
doCheck = stdenv.hostPlatform == stdenv.buildPlatform && stdenv.targetPlatform.linker == "bfd" && wayland.withLibraries;
|
|
|
|
src = fetchurl {
|
|
url = "https://gitlab.freedesktop.org/wayland/${pname}/-/releases/${version}/downloads/${pname}-${version}.tar.xz";
|
|
hash = "sha256-dFl5nTQMgpa2le+FfAfd7yTFoJsJq2p097kmQNKxuhE=";
|
|
};
|
|
|
|
postPatch = lib.optionalString doCheck ''
|
|
patchShebangs tests/
|
|
'';
|
|
|
|
depsBuildBuild = [ pkg-config ];
|
|
nativeBuildInputs = [ meson ninja wayland-scanner ];
|
|
nativeCheckInputs = [ python3 wayland ];
|
|
|
|
mesonFlags = [ "-Dtests=${lib.boolToString doCheck}" ];
|
|
|
|
meta = {
|
|
description = "Wayland protocol extensions";
|
|
longDescription = ''
|
|
wayland-protocols contains Wayland protocols that add functionality not
|
|
available in the Wayland core protocol. Such protocols either add
|
|
completely new functionality, or extend the functionality of some other
|
|
protocol either in Wayland core, or some other protocol in
|
|
wayland-protocols.
|
|
'';
|
|
homepage = "https://gitlab.freedesktop.org/wayland/wayland-protocols";
|
|
license = lib.licenses.mit; # Expat version
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [ primeos ];
|
|
};
|
|
|
|
passthru.version = version;
|
|
}
|