wayland-utils: 1.0.0 -> 1.1.0

This commit is contained in:
Alyssa Ross 2022-09-24 11:02:31 +00:00
parent 198b38f54d
commit 0ea8b076b1

View File

@ -1,21 +1,21 @@
{ lib, stdenv, fetchurl
, meson, pkg-config, ninja, wayland-scanner
, wayland, wayland-protocols
, libdrm, wayland, wayland-protocols
}:
stdenv.mkDerivation rec {
pname = "wayland-utils";
version = "1.0.0";
version = "1.1.0";
src = fetchurl {
url = "https://wayland.freedesktop.org/releases/${pname}-${version}.tar.xz";
sha256 = "1h38l850ww6hxjb1l8iwa33nkbz8q88bw6lh0aryjyp8b16crzk4";
url = "https://gitlab.freedesktop.org/wayland/wayland-utils/-/releases/${version}/downloads/wayland-utils-${version}.tar.xz";
sha256 = "sha256-nmhYYwJbT+reNtU7vI4xtD4mSYvnQ96oTHqEkSlZQQo=";
};
strictDeps = true;
depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [ meson pkg-config ninja wayland-scanner ];
buildInputs = [ wayland wayland-protocols ];
buildInputs = [ libdrm wayland wayland-protocols ];
meta = with lib; {
description = "Wayland utilities (wayland-info)";