From 72dc88a9aa24586d088d037839e462098645e18f Mon Sep 17 00:00:00 2001 From: polykernel <81340136+polykernel@users.noreply.github.com> Date: Sun, 28 Aug 2022 19:29:18 -0400 Subject: [PATCH] fuzzel: revert CFLAGS workaround for librsvg regression The '-Wno-error=comment' cflag was introduced in https://github.com/NixOS/nixpkgs/commit/e01c41205234a68a55903e05800e62d0de302e1a as a workaround for the librsvg build regression[1] when '-Werror' is used. The issue has been fixed since release v2.54.1[2]. [1] - https://gitlab.gnome.org/GNOME/librsvg/-/issues/856 [2] - https://gitlab.gnome.org/GNOME/librsvg/-/commit/39a6d3418c0df8ca5ea4d0df3e1b14b915c75608 --- pkgs/applications/misc/fuzzel/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/applications/misc/fuzzel/default.nix b/pkgs/applications/misc/fuzzel/default.nix index b187dcc0e8c6..421f98b1fb62 100644 --- a/pkgs/applications/misc/fuzzel/default.nix +++ b/pkgs/applications/misc/fuzzel/default.nix @@ -62,8 +62,6 @@ stdenv.mkDerivation rec { "-Dsvg-backend=${if svgSupport then "librsvg" else "none"}" ]; - CFLAGS = "-Wno-error=comment"; # https://gitlab.gnome.org/GNOME/librsvg/-/issues/856 - meta = with lib; { description = "Wayland-native application launcher, similar to rofi’s drun mode"; homepage = "https://codeberg.org/dnkl/fuzzel";