pkgsStatic.llhttp: fix building static archives (#500733)

This commit is contained in:
Antoine du Hamel
2026-03-30 23:35:55 +00:00
committed by GitHub
+2 -2
View File
@@ -31,8 +31,8 @@ stdenv.mkDerivation (finalAttrs: {
];
cmakeFlags = [
(lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic))
(lib.cmakeBool "BUILD_STATIC_LIBS" stdenv.hostPlatform.isStatic)
(lib.cmakeBool "LLHTTP_BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic))
(lib.cmakeBool "LLHTTP_BUILD_STATIC_LIBS" stdenv.hostPlatform.isStatic)
];
passthru.updateScript = nix-update-script {