From 7ea654576d25d28af9aa765851a15b1d52bfc596 Mon Sep 17 00:00:00 2001 From: Erin Kim <79354991+erinkim4@users.noreply.github.com> Date: Wed, 2 Mar 2022 22:08:38 -0600 Subject: [PATCH] thermald: disable -Werror Fixes broken builds due to deprecations in dependencies --- pkgs/tools/system/thermald/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/system/thermald/default.nix b/pkgs/tools/system/thermald/default.nix index eb1e8ab5a346..f2fae161daa8 100644 --- a/pkgs/tools/system/thermald/default.nix +++ b/pkgs/tools/system/thermald/default.nix @@ -55,6 +55,7 @@ stdenv.mkDerivation rec { "--enable-gtk-doc" "--with-dbus-sys-dir=${placeholder "out"}/share/dbus-1/system.d" "--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system" + "--disable-werror" ]; preConfigure = "NO_CONFIGURE=1 ./autogen.sh";