From 1f7b63476a64b2fb11f176fc43448dda2ecc1a5a Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Wed, 18 Sep 2024 09:44:24 +0200 Subject: [PATCH] mumble: fix building with GCC 14 --- pkgs/applications/networking/mumble/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/applications/networking/mumble/default.nix b/pkgs/applications/networking/mumble/default.nix index f33ef641abf2..ba77425b5ef8 100644 --- a/pkgs/applications/networking/mumble/default.nix +++ b/pkgs/applications/networking/mumble/default.nix @@ -107,6 +107,14 @@ let hash = "sha256-d9XmXHq264rTT80zphYcKLxS+AyUhjb19D3DuBJvMI4="; fetchSubmodules = true; }; + + patches = [ + (fetchpatch { + name = "GCC14.patch"; + url = "https://github.com/mumble-voip/mumble/commit/56945a9dfb62d29dccfe561572ebf64500deaed1.patch"; + hash = "sha256-Frct9XJ/ZuHPglx+GB9h3vVycR8YY039dStIbfkPPDk="; + }) + ]; }; in { mumble = client source;