diff options
| author | Justin Restivo <justin@restivo.me> | 2024-01-11 11:24:35 -0500 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-02-27 12:28:40 +0000 |
| commit | a351df16c79d761f238ba7ebcd21d582c3a2267c (patch) | |
| tree | f8168248e36d995bb3e38b1cf9bb7cf815250a9c | |
| parent | bear: remove broken on darwin (diff) | |
| download | nixpkgs-origin/backport-279035-to-release-23.11.tar.gz | |
bear: disable testsorigin/backport-279035-to-release-23.11
(cherry picked from commit 459e2889615da6fc03b9869b611bfd4777cae28e)
| -rw-r--r-- | pkgs/development/tools/build-managers/bear/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/tools/build-managers/bear/default.nix b/pkgs/development/tools/build-managers/bear/default.nix index 6c22a0c5dd2a..2789d3cefaff 100644 --- a/pkgs/development/tools/build-managers/bear/default.nix +++ b/pkgs/development/tools/build-managers/bear/default.nix @@ -58,6 +58,8 @@ stdenv.mkDerivation rec { # CMAKE_INSTALL_{BIN,LIB}DIR, which breaks if these are absolute paths. "-DCMAKE_INSTALL_BINDIR=bin" "-DCMAKE_INSTALL_LIBDIR=lib" + (lib.cmakeBool "ENABLE_UNIT_TESTS" false) + (lib.cmakeBool "ENABLE_FUNC_TESTS" false) ]; patches = [ |
