Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

51 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
meson,
pkg-config,
ninja,
wayland-scanner,
libdrm,
wayland,
wayland-protocols,
}:
stdenv.mkDerivation rec {
pname = "wayland-utils";
version = "1.2.0";
src = fetchurl {
url = "https://gitlab.freedesktop.org/wayland/wayland-utils/-/releases/${version}/downloads/wayland-utils-${version}.tar.xz";
sha256 = "sha256-2SeMIlVFhogYAlQHUbzEJWkmK/gM2aybD9Ev9L0JqeQ=";
};
strictDeps = true;
depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [
meson
pkg-config
ninja
wayland-scanner
];
buildInputs = [
libdrm
wayland
wayland-protocols
];
meta = with lib; {
description = "Wayland utilities (wayland-info)";
longDescription = ''
A collection of Wayland related utilities:
- wayland-info: A utility for displaying information about the Wayland
protocols supported by a Wayland compositor.
'';
homepage = "https://gitlab.freedesktop.org/wayland/wayland-utils";
license = licenses.mit; # Expat version
platforms = platforms.linux;
maintainers = with maintainers; [ wineee ];
mainProgram = "wayland-info";
};
}