nixpkgs/pkgs/development/libraries/spdlog/default.nix

61 lines
1.8 KiB
Nix
Raw Normal View History

2021-11-07 19:56:36 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, fmt_8 }:
2016-05-03 21:54:06 +00:00
2018-09-09 20:13:24 +00:00
let
generic = { version, sha256 }:
stdenv.mkDerivation {
pname = "spdlog";
2018-09-09 20:13:24 +00:00
inherit version;
src = fetchFromGitHub {
owner = "gabime";
repo = "spdlog";
rev = "v${version}";
inherit sha256;
};
2016-05-03 21:54:06 +00:00
2018-09-09 20:13:24 +00:00
nativeBuildInputs = [ cmake ];
# spdlog <1.3 uses a bundled version of fmt
2021-11-07 19:56:36 +00:00
propagatedBuildInputs = lib.optional (lib.versionAtLeast version "1.3") fmt_8;
2016-05-03 21:54:06 +00:00
cmakeFlags = [
2021-01-23 12:28:36 +00:00
"-DSPDLOG_BUILD_SHARED=${if stdenv.hostPlatform.isStatic then "OFF" else "ON"}"
"-DSPDLOG_BUILD_STATIC=${if stdenv.hostPlatform.isStatic then "ON" else "OFF"}"
"-DSPDLOG_BUILD_EXAMPLE=OFF"
"-DSPDLOG_BUILD_BENCH=OFF"
"-DSPDLOG_BUILD_TESTS=ON"
"-DSPDLOG_FMT_EXTERNAL=ON"
];
2016-05-03 21:54:06 +00:00
outputs = [ "out" "doc" ]
# spdlog <1.4 is header only, no need to split libraries and headers
++ lib.optional (lib.versionAtLeast version "1.4") "dev";
2016-05-03 21:54:06 +00:00
2018-09-09 20:13:24 +00:00
postInstall = ''
mkdir -p $out/share/doc/spdlog
cp -rv ../example $out/share/doc/spdlog
'';
2016-05-03 21:54:06 +00:00
doCheck = true;
preCheck = "export LD_LIBRARY_PATH=$(pwd)\${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH";
meta = with lib; {
description = "Very fast, header only, C++ logging library";
homepage = "https://github.com/gabime/spdlog";
2018-09-09 20:13:24 +00:00
license = licenses.mit;
maintainers = with maintainers; [ obadz ];
platforms = platforms.all;
};
};
in
{
spdlog_1 = generic {
2021-11-07 19:56:36 +00:00
version = "1.9.2";
sha256 = "sha256-GSUdHtvV/97RyDKy8i+ticnSlQCubGGWHg4Oo+YAr8Y=";
2018-09-09 20:13:24 +00:00
};
spdlog_0 = generic {
version = "0.17.0";
sha256 = "112kfh4fbpm5cvrmgbgz4d8s802db91mhyjpg7cwhlywffnzkwr9";
2016-05-03 21:54:06 +00:00
};
}