lager: fix build on darwin

The bazel configuration file `BUILD` conflicts with the build folder
that should be created. Its fine to just remove it since we are not
using bazel to build this package.
This commit is contained in:
Jeremy Stucki 2024-11-23 12:05:11 +01:00
parent 81e3acd7c4
commit 708ef463a8
No known key found for this signature in database

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++";