l8w8jwt: fix build with cmake4 (#454298)

This commit is contained in:
Yohann Boniface
2025-10-22 11:38:56 +00:00
committed by GitHub
+6
View File
@@ -47,6 +47,11 @@ stdenv.mkDerivation (finalAttrs: {
runHook postInstall
'';
postPatch = ''
substituteInPlace lib/chillbuff/CMakeLists.txt \
--replace-fail "cmake_minimum_required(VERSION 3.1)" "cmake_minimum_required(VERSION 3.10)"
'';
meta = {
description = "Minimal, OpenSSL-less and super lightweight JWT library written in C";
homepage = "https://codeberg.org/GlitchedPolygons/l8w8jwt";
@@ -54,5 +59,6 @@ stdenv.mkDerivation (finalAttrs: {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ jherland ];
platforms = lib.platforms.unix;
broken = stdenv.hostPlatform.isDarwin || stdenv.hostPlatform.isAarch64;
};
})