linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / opentracing-cpp / default.nix
blob9c99ee6027ddb2637435b33804165faf811a4819
1 { lib, stdenv, fetchFromGitHub, cmake }:
2 stdenv.mkDerivation rec {
3   pname = "opentracing-cpp";
4   version = "1.5.1";
5   src = fetchFromGitHub {
6     owner = "opentracing";
7     repo = "opentracing-cpp";
8     rev = "v${version}";
9     sha256 = "04kw19g8qrv3kd40va3sqbfish7kfczkdpxdwraifk9950wfs3gx";
10   };
12   nativeBuildInputs = [ cmake ];
14   meta = {
15     description = "C++ implementation of the OpenTracing API";
16     homepage = "https://opentracing.io";
17     license = lib.licenses.asl20;
18     maintainers = with lib.maintainers; [ rob ];
19   };