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

47 lines
1.1 KiB
Nix
Raw Normal View History

2016-05-03 21:54:06 +00:00
{ stdenv, fetchFromGitHub, cmake }:
2018-09-09 20:13:24 +00:00
let
generic = { version, sha256 }:
stdenv.mkDerivation {
name = "spdlog-${version}";
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 ];
2016-05-03 21:54:06 +00:00
cmakeFlags = [ "-DSPDLOG_BUILD_EXAMPLES=OFF" ];
2016-05-03 21:54:06 +00:00
2018-09-09 20:13:24 +00:00
outputs = [ "out" "doc" ];
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
2018-09-09 20:13:24 +00:00
meta = with stdenv.lib; {
description = "Very fast, header only, C++ logging library.";
homepage = https://github.com/gabime/spdlog;
license = licenses.mit;
maintainers = with maintainers; [ obadz ];
platforms = platforms.all;
};
};
in
{
spdlog_1 = generic {
version = "1.2.1";
sha256 = "0gdj8arfz4r9419zbcxk9y9nv47qr7kyjjzw9m3ijgmn2pmxk88n";
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
};
}