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

47 lines
1.1 KiB
Nix
Raw Normal View History

2016-05-03 23:54:06 +02:00
{ stdenv, fetchFromGitHub, cmake }:
2018-09-09 22:13:24 +02:00
let
generic = { version, sha256 }:
stdenv.mkDerivation {
pname = "spdlog";
2018-09-09 22:13:24 +02:00
inherit version;
src = fetchFromGitHub {
owner = "gabime";
repo = "spdlog";
rev = "v${version}";
inherit sha256;
};
2016-05-03 23:54:06 +02:00
2018-09-09 22:13:24 +02:00
nativeBuildInputs = [ cmake ];
2016-05-03 23:54:06 +02:00
cmakeFlags = [ "-DSPDLOG_BUILD_EXAMPLE=OFF" "-DSPDLOG_BUILD_BENCH=OFF" ];
2016-05-03 23:54:06 +02:00
2018-09-09 22:13:24 +02:00
outputs = [ "out" "doc" ];
2016-05-03 23:54:06 +02:00
2018-09-09 22:13:24 +02:00
postInstall = ''
mkdir -p $out/share/doc/spdlog
cp -rv ../example $out/share/doc/spdlog
'';
2016-05-03 23:54:06 +02:00
2018-09-09 22:13:24 +02:00
meta = with stdenv.lib; {
description = "Very fast, header only, C++ logging library";
homepage = "https://github.com/gabime/spdlog";
2018-09-09 22:13:24 +02:00
license = licenses.mit;
maintainers = with maintainers; [ obadz ];
platforms = platforms.all;
};
};
in
{
spdlog_1 = generic {
version = "1.4.2";
sha256 = "1qc3rphvik44136ms0gjq2wmkl6qglri4fqxlhr2l5jwm8zhr8fc";
2018-09-09 22:13:24 +02:00
};
spdlog_0 = generic {
version = "0.17.0";
sha256 = "112kfh4fbpm5cvrmgbgz4d8s802db91mhyjpg7cwhlywffnzkwr9";
2016-05-03 23:54:06 +02:00
};
}