summary refs log tree commit diff
path: root/pkgs/development/libraries/opentracing-cpp/default.nix
blob: 3b0354b9fe8e679953359476b88907ff17748667 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
  name = "opentracing-cpp-${version}";
  version = "1.5.0";
  src = fetchFromGitHub {
    owner = "opentracing";
    repo = "opentracing-cpp";
    rev = "v${version}";
    sha256 = "09hxj59vvz1ncbx4iblgfc3b5i74hvb3vx5245bwwwfkx5cnj1gg";
  };
  buildInputs = [ cmake ];

  meta = {
    description = "C++ implementation of the OpenTracing API";
    homepage = http://opentracing.io;
    license = stdenv.lib.licenses.asl20;
    maintainers = with stdenv.lib.maintainers; [ rob ];
  };

}