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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
2.1 KiB
Nix
Raw Normal View History

2022-08-10 21:02:54 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, fmt_8, fetchpatch
, staticBuild ? stdenv.hostPlatform.isStatic
}:
2016-05-03 21:54:06 +00:00
2018-09-09 20:13:24 +00:00
let
2022-04-14 03:12:47 +00:00
generic = { version, sha256 }:
2018-09-09 20:13:24 +00:00
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
2022-08-10 21:02:54 +00:00
# in master post 1.10.0, see https://github.com/gabime/spdlog/issues/2380
patches = lib.optional (lib.versionAtLeast version "1.4.1") (fetchpatch {
name = "fix-pkg-config.patch";
url = "https://github.com/gabime/spdlog/commit/afb69071d5346b84e38fbcb0c8c32eddfef02a55.patch";
sha256 = "0cab2bbv8zyfhrhfvcyfwf5p2fddlq5hs2maampn5w18f6jhvk6q";
});
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 = [
"-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"
];
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;
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 {
2022-04-14 03:12:47 +00:00
version = "1.10.0";
sha256 = "sha256-c6s27lQCXKx6S1FhZ/LiKh14GnXMhZtD1doltU4Avws=";
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
};
}