depot/third_party/nixpkgs/pkgs/development/libraries/opentracing-cpp/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

21 lines
540 B
Nix

{ lib, 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 = lib.licenses.asl20;
maintainers = with lib.maintainers; [ rob ];
};
}