mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
wayland-utils: 1.0.0 -> 1.1.0
This commit is contained in:
parent
198b38f54d
commit
0ea8b076b1
@ -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)";
|
||||
|
Loading…
Reference in New Issue
Block a user