Commit b743b5a3 authored by Kira Bruneau's avatar Kira Bruneau
Browse files

zynaddsubfx.mruby-zest: build with gcc14 to fix unresponsive ui

parent c947f538
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  gcc14Stdenv,
  fetchFromGitHub,
  bison,
  pkg-config,
@@ -11,7 +11,10 @@
  libx11,
}:

stdenv.mkDerivation (finalAttrs: {
# UI becomes unresponsive when built with GCC 15
# (building with -std=gnu17 does not fix the issue)
# https://github.com/mruby-zest/mruby-zest-build/issues/127
gcc14Stdenv.mkDerivation (finalAttrs: {
  pname = "mruby-zest";
  version = "3.0.6";