lol

Merge pull request #255212 from lopsided98/spdlog-cross

spdlog: fix cross-compilation

authored by

Artturi and committed by
GitHub
df75f8b6 f773e7cf

+2 -1
+2 -1
pkgs/development/libraries/spdlog/default.nix
··· 31 31 ]; 32 32 33 33 nativeBuildInputs = [ cmake ]; 34 + # Required to build tests, even if they aren't executed 35 + buildInputs = [ catch2_3 ]; 34 36 propagatedBuildInputs = [ fmt ]; 35 - checkInputs = [ catch2_3 ]; 36 37 37 38 cmakeFlags = [ 38 39 "-DSPDLOG_BUILD_SHARED=${if staticBuild then "OFF" else "ON"}"