Fix zug and lager builds on darwin (#358399)

This commit is contained in:
Weijia Wang 2024-11-23 15:24:45 +01:00 committed by GitHub
commit 26f2b6133c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -29,7 +29,9 @@ stdenv.mkDerivation (finalAttrs: {
cmakeFlags = [
"-Dlager_BUILD_EXAMPLES=OFF"
];
preConfigure = ''
rm BUILD
'';
meta = {
homepage = "https://github.com/arximboldi/lager";
description = "C++ library for value-oriented design using the unidirectional data-flow architecture Redux for C++";

View File

@ -24,6 +24,9 @@ stdenv.mkDerivation rec {
cmakeFlags = [
"-Dzug_BUILD_EXAMPLES=OFF"
];
preConfigure = ''
rm BUILD
'';
meta = with lib; {
homepage = "https://github.com/arximboldi/zug";
description = "library for functional interactive c++ programs";