core/pkgs/by-name/sp/spdlog/default.nix

65 lines
1.3 KiB
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
fmt,
catch2_3,
staticBuild ? stdenv.hostPlatform.isStatic,
2024-05-02 00:46:19 +00:00
# for passthru.tests
# , bear
# , tiledb
}:
stdenv.mkDerivation rec {
pname = "spdlog";
version = "1.13.0";
src = fetchFromGitHub {
owner = "gabime";
2024-06-30 08:16:52 +00:00
repo = "spdlog";
rev = "v${version}";
hash = "sha256-3n8BnjZ7uMH8quoiT60yTU7poyOtoEmzNMOLa1+r7X0=";
2024-05-02 00:46:19 +00:00
};
nativeBuildInputs = [ cmake ];
# Required to build tests, even if they aren't executed
buildInputs = [ catch2_3 ];
propagatedBuildInputs = [ fmt ];
cmakeFlags = [
"-DSPDLOG_BUILD_SHARED=${if staticBuild then "OFF" else "ON"}"
"-DSPDLOG_BUILD_STATIC=${if staticBuild then "ON" else "OFF"}"
"-DSPDLOG_BUILD_EXAMPLE=OFF"
"-DSPDLOG_BUILD_BENCH=OFF"
"-DSPDLOG_BUILD_TESTS=ON"
"-DSPDLOG_FMT_EXTERNAL=ON"
];
2024-06-30 08:16:52 +00:00
outputs = [
"out"
"doc"
"dev"
];
2024-05-02 00:46:19 +00:00
postInstall = ''
mkdir -p $out/share/doc/spdlog
cp -rv ../example $out/share/doc/spdlog
'';
doCheck = true;
# passthru.tests = {
# inherit bear tiledb;
# };
meta = with lib; {
2024-06-30 08:16:52 +00:00
description = "Very fast, header only, C++ logging library";
homepage = "https://github.com/gabime/spdlog";
license = licenses.mit;
maintainers = with maintainers; [ obadz ];
platforms = platforms.all;
2024-05-02 00:46:19 +00:00
};
}