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

  nativeBuildInputs = [ cmake ];

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

}