drop bear from buildinputs of nix-unit

This commit is contained in:
Jörg Thalheim 2023-09-28 15:56:52 +02:00
parent b366beeb2e
commit 156f792bf3

View File

@ -4,7 +4,6 @@
, fetchFromGitHub
, nlohmann_json
, boost
, bear
, meson
, pkg-config
, ninja
@ -27,13 +26,12 @@ stdenv.mkDerivation {
boost
];
nativeBuildInputs = [
bear
meson
pkg-config
ninja
# nlohmann_json can be only discovered via cmake files
cmake
] ++ (lib.optional stdenv.cc.isClang [ bear clang-tools ]);
] ++ (lib.optional stdenv.cc.isClang [ clang-tools ]);
meta = {
description = "Nix unit test runner";