From 36ed099418ee4c1b3657201ebb66fc7d6ee02a4a Mon Sep 17 00:00:00 2001 From: wxt <3264117476@qq.com> Date: Sun, 29 Dec 2024 16:07:53 +0800 Subject: [PATCH] byzanz: fix build --- pkgs/by-name/by/byzanz/package.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/by/byzanz/package.nix b/pkgs/by-name/by/byzanz/package.nix index 36e477751c88..c12ea0e7777c 100644 --- a/pkgs/by-name/by/byzanz/package.nix +++ b/pkgs/by-name/by/byzanz/package.nix @@ -34,6 +34,7 @@ stdenv.mkDerivation { env.NIX_CFLAGS_COMPILE = builtins.concatStringsSep " " [ "-Wno-error=deprecated-declarations" "-Wno-error=incompatible-pointer-types" + "-Wno-error=discarded-qualifiers" ]; nativeBuildInputs = [ @@ -61,11 +62,11 @@ stdenv.mkDerivation { wrapGAppsHook3 ]); - meta = with lib; { + meta = { description = "Tool to record a running X desktop to an animation suitable for presentation in a web browser"; homepage = "https://github.com/GNOME/byzanz"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bot-wxt1221 ]; }; }