summary refs log tree commit diff
path: root/pkgs/development/libraries/opentracing-cpp/default.nix
blob: 76342abaa2d1d7ed17c244418038b075ff00454c (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 {
  pname = "opentracing-cpp";
  version = "1.5.1";
  src = fetchFromGitHub {
    owner = "opentracing";
    repo = "opentracing-cpp";
    rev = "v${version}";
    sha256 = "04kw19g8qrv3kd40va3sqbfish7kfczkdpxdwraifk9950wfs3gx";
  };

  nativeBuildInputs = [ cmake ];

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

}