1 { lib, stdenv, fetchurl
2 , meson, pkg-config, ninja, wayland-scanner
3 , libdrm, wayland, wayland-protocols
6 stdenv.mkDerivation rec {
7 pname = "wayland-utils";
11 url = "https://gitlab.freedesktop.org/wayland/wayland-utils/-/releases/${version}/downloads/wayland-utils-${version}.tar.xz";
12 sha256 = "sha256-2SeMIlVFhogYAlQHUbzEJWkmK/gM2aybD9Ev9L0JqeQ=";
16 depsBuildBuild = [ pkg-config ];
17 nativeBuildInputs = [ meson pkg-config ninja wayland-scanner ];
18 buildInputs = [ libdrm wayland wayland-protocols ];
21 description = "Wayland utilities (wayland-info)";
23 A collection of Wayland related utilities:
24 - wayland-info: A utility for displaying information about the Wayland
25 protocols supported by a Wayland compositor.
27 homepage = "https://gitlab.freedesktop.org/wayland/wayland-utils";
28 license = licenses.mit; # Expat version
29 platforms = platforms.linux;
30 maintainers = with maintainers; [ primeos ];
31 mainProgram = "wayland-info";