We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
gcc-14
2 parents d554f27 + 44ac0b5 commit b8d482aCopy full SHA for b8d482a
pkgs/by-name/gn/gnome-recipes/package.nix
@@ -2,6 +2,7 @@
2
stdenv,
3
lib,
4
fetchFromGitLab,
5
+ fetchpatch,
6
meson,
7
ninja,
8
pkg-config,
@@ -35,6 +36,15 @@ stdenv.mkDerivation rec {
35
36
sha256 = "GyFOwEYmipQdFLtTXn7+NvhDTzxBlOAghr3cZT4QpQw=";
37
};
38
39
+ patches = [
40
+ # gcc-14 build failure fix
41
+ (fetchpatch {
42
+ name = "gcc-14.patch";
43
+ url = "https://gitlab.gnome.org/GNOME/recipes/-/commit/c0304675f63a33737b24fdf37e06c6b154a91a31.patch";
44
+ hash = "sha256-YTf4NDwUiU/q96RAXKTO499pW9sPrgh8IvdPBPEnV6Q=";
45
+ })
46
+ ];
47
+
48
nativeBuildInputs = [
49
meson
50
ninja
0 commit comments