summary refs log tree commit diff
path: root/pkgs/development/libraries/spdlog/default.nix
blob: 1c9e67f87675ce08d0a9699e32da39490fec1cc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
  name = "spdlog-${version}";
  version = "0.14.0";

  src = fetchFromGitHub {
    owner  = "gabime";
    repo   = "spdlog";
    rev    = "v${version}";
    sha256 = "13730429gwlabi432ilpnja3sfvy0nn2719vnhhmii34xcdyc57q";
  };

  nativeBuildInputs = [ cmake ];

  # cmakeFlags = [ "-DSPDLOG_BUILD_EXAMPLES=ON" ];

  outputs = [ "out" "doc" ];

  postInstall = ''
    mkdir -p $out/share/doc/spdlog
    cp -rv ../example $out/share/doc/spdlog
  '';

  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;
  };
}