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
2 changed files with 6 additions and 1 deletions
+3 -1
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++";
+3
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";