1 { lib, stdenv, fetchFromGitHub, cmake }:
2 stdenv.mkDerivation rec {
3 pname = "opentracing-cpp";
5 src = fetchFromGitHub {
7 repo = "opentracing-cpp";
9 sha256 = "04kw19g8qrv3kd40va3sqbfish7kfczkdpxdwraifk9950wfs3gx";
12 nativeBuildInputs = [ cmake ];
15 description = "C++ implementation of the OpenTracing API";
16 homepage = "https://opentracing.io";
17 license = lib.licenses.asl20;
18 maintainers = with lib.maintainers; [ rob ];