nixpkgs/pkgs/development/libraries/opentracing-cpp/default.nix
R. RyanTM ac1002f27e opentracing-cpp: 1.5.0 -> 1.5.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/opentracing-cpp/versions
2019-03-11 00:56:34 -07:00

22 lines
550 B
Nix

{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "opentracing-cpp-${version}";
version = "1.5.1";
src = fetchFromGitHub {
owner = "opentracing";
repo = "opentracing-cpp";
rev = "v${version}";
sha256 = "04kw19g8qrv3kd40va3sqbfish7kfczkdpxdwraifk9950wfs3gx";
};
buildInputs = [ cmake ];
meta = {
description = "C++ implementation of the OpenTracing API";
homepage = http://opentracing.io;
license = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers; [ rob ];
};
}