about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2023-02-13 15:42:23 +0100
committerVladimír Čunát <v@cunat.cz>2023-02-13 15:42:23 +0100
commitf1f9ae6a3b31cdbc3b8fc84d07fdea26a1d2f67f (patch)
tree3fad4c8b6a1d82fb871803b13730df2295a805cf /pkgs/applications/version-management
parent38f213c24f72ca0ebe8a4b17dac89ee80b98f601 (diff)
parenta6767ed93421c5afde3fb086bb8e89759112aa74 (diff)
Merge #214010: staging-next 2023-02-01
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/fnc/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/fnc/default.nix b/pkgs/applications/version-management/fnc/default.nix
index a60aa27a8439c..7fd1b34d4560e 100644
--- a/pkgs/applications/version-management/fnc/default.nix
+++ b/pkgs/applications/version-management/fnc/default.nix
@@ -13,6 +13,11 @@ stdenv.mkDerivation rec {
 
   makeFlags = [ "PREFIX=$(out)" ];
 
+  NIX_CFLAGS_COMPILE = [
+    # Needed with GCC 12
+    "-Wno-error=maybe-uninitialized"
+  ];
+
   preInstall = ''
     mkdir -p $out/bin
   '';