spdlog: add packages as reverse dependencies to passthru.tests

This commit is contained in:
Mario Rodas 2023-05-20 04:20:00 +00:00
parent 21ab21acee
commit aaf7964376

View File

@ -1,5 +1,8 @@
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, fmt
, staticBuild ? stdenv.hostPlatform.isStatic
# tests
, bear, tiledb
}:
stdenv.mkDerivation rec {
@ -46,6 +49,10 @@ stdenv.mkDerivation rec {
doCheck = true;
passthru.tests = {
inherit bear tiledb;
};
meta = with lib; {
description = "Very fast, header only, C++ logging library";
homepage = "https://github.com/gabime/spdlog";