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