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

57 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, fmt }:
2016-05-03 22:54:06 +01:00
2018-09-09 21:13:24 +01:00
let
generic = { version, sha256 }:
stdenv.mkDerivation {
pname = "spdlog";
2018-09-09 21:13:24 +01:00
inherit version;
src = fetchFromGitHub {
owner = "gabime";
repo = "spdlog";
rev = "v${version}";
inherit sha256;
};
2016-05-03 22:54:06 +01:00
2018-09-09 21:13:24 +01:00
nativeBuildInputs = [ cmake ];
buildInputs = [ fmt ];
2016-05-03 22:54:06 +01:00
cmakeFlags = [
2020-10-14 20:32:17 +01:00
"-DSPDLOG_BUILD_SHARED=ON"
"-DSPDLOG_BUILD_EXAMPLE=OFF"
"-DSPDLOG_BUILD_BENCH=OFF"
"-DSPDLOG_BUILD_TESTS=ON"
"-DSPDLOG_FMT_EXTERNAL=ON"
];
2016-05-03 22:54:06 +01:00
2018-09-09 21:13:24 +01:00
outputs = [ "out" "doc" ];
2016-05-03 22:54:06 +01:00
2018-09-09 21:13:24 +01:00
postInstall = ''
mkdir -p $out/share/doc/spdlog
cp -rv ../example $out/share/doc/spdlog
'';
2016-05-03 22:54:06 +01:00
doCheck = true;
2020-10-14 20:32:17 +01:00
preCheck = "export LD_LIBRARY_PATH=$(pwd):$LD_LIBRARY_PATH";
meta = with lib; {
description = "Very fast, header only, C++ logging library";
homepage = "https://github.com/gabime/spdlog";
2018-09-09 21:13:24 +01:00
license = licenses.mit;
maintainers = with maintainers; [ obadz ];
platforms = platforms.all;
};
};
in
{
spdlog_1 = generic {
2020-11-19 07:43:18 +00:00
version = "1.8.1";
sha256 = "sha256-EyZhYgcdtZC+vsOUKShheY57L0tpXltduHWwaoy6G9k=";
2018-09-09 21:13:24 +01:00
};
spdlog_0 = generic {
version = "0.17.0";
sha256 = "112kfh4fbpm5cvrmgbgz4d8s802db91mhyjpg7cwhlywffnzkwr9";
2016-05-03 22:54:06 +01:00
};
}