skim: 0.15.7 -> 0.16.0 (#376410)
[NixPkgs.git] / pkgs / by-name / wa / wayland-utils / package.nix
blobc938f9a0dfa1222adbffdf83fe8f6f7a700c1ee5
2   lib,
3   stdenv,
4   fetchurl,
5   meson,
6   pkg-config,
7   ninja,
8   wayland-scanner,
9   libdrm,
10   wayland,
11   wayland-protocols,
14 stdenv.mkDerivation rec {
15   pname = "wayland-utils";
16   version = "1.2.0";
18   src = fetchurl {
19     url = "https://gitlab.freedesktop.org/wayland/wayland-utils/-/releases/${version}/downloads/wayland-utils-${version}.tar.xz";
20     sha256 = "sha256-2SeMIlVFhogYAlQHUbzEJWkmK/gM2aybD9Ev9L0JqeQ=";
21   };
23   strictDeps = true;
24   depsBuildBuild = [ pkg-config ];
25   nativeBuildInputs = [
26     meson
27     pkg-config
28     ninja
29     wayland-scanner
30   ];
31   buildInputs = [
32     libdrm
33     wayland
34     wayland-protocols
35   ];
37   meta = with lib; {
38     description = "Wayland utilities (wayland-info)";
39     longDescription = ''
40       A collection of Wayland related utilities:
41       - wayland-info: A utility for displaying information about the Wayland
42         protocols supported by a Wayland compositor.
43     '';
44     homepage = "https://gitlab.freedesktop.org/wayland/wayland-utils";
45     license = licenses.mit; # Expat version
46     platforms = platforms.linux;
47     maintainers = with maintainers; [ primeos ];
48     mainProgram = "wayland-info";
49   };