limesuite: include upstream patch for gcc 15

LimeSuite currently fails to build under GCC 15, due to C23
incompatibilities. Upstream has already merged a patch to fix this, but
it has not yet made it to a release, so we include it here.
This commit is contained in:
whispers
2025-12-21 15:42:49 -05:00
parent e37ab33005
commit 69247eec82
@@ -32,6 +32,11 @@ stdenv.mkDerivation rec {
url = "https://github.com/myriadrf/LimeSuite/commit/4e5ad459d50c922267a008e5cecb3efdbff31f09.patch";
hash = "sha256-OASki3bISJvV7wjMz0pBT3kO5RvJ5BnymiF6ruHkCJ8=";
})
# Fixes for C23 (GCC 15). Remove upon next version bump
(fetchpatch {
url = "https://github.com/myriadrf/LimeSuite/commit/524cd2e548b11084e6f739b2dfe0f958c2e30354.patch";
hash = "sha256-wxwhFjXcIgBMTJoJ6efdtyttxMFZviCTXtEb2qFX9yU=";
})
];
nativeBuildInputs = [ cmake ];