Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions pkgs/desktops/gnome-2/desktop/gtksourceview/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,12 @@ stdenv.mkDerivation (finalAttrs: {
})
];

# Fix build with gcc 14
env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types";
env = {
# Required by autoreconfHook to find gettext.m4 outside aclocal's default search path.
ACLOCAL = "aclocal -I ${gettext}/share/gettext/m4";
# Fix build with gcc 14.
NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types";
};

nativeBuildInputs = [
pkg-config
Expand Down
Loading