biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / wayland / wayland-utils / default.nix
blob948bb758110b0a1a2b95859d6833f95e516fcd37
1 { lib, stdenv, fetchurl
2 , meson, pkg-config, ninja, wayland-scanner
3 , libdrm, wayland, wayland-protocols
4 }:
6 stdenv.mkDerivation rec {
7   pname = "wayland-utils";
8   version = "1.2.0";
10   src = fetchurl {
11     url = "https://gitlab.freedesktop.org/wayland/wayland-utils/-/releases/${version}/downloads/wayland-utils-${version}.tar.xz";
12     sha256 = "sha256-2SeMIlVFhogYAlQHUbzEJWkmK/gM2aybD9Ev9L0JqeQ=";
13   };
15   strictDeps = true;
16   depsBuildBuild = [ pkg-config ];
17   nativeBuildInputs = [ meson pkg-config ninja wayland-scanner ];
18   buildInputs = [ libdrm wayland wayland-protocols ];
20   meta = with lib; {
21     description = "Wayland utilities (wayland-info)";
22     longDescription = ''
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.
26     '';
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";
32   };