mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
13649b9eee
(cherry picked from commit df29219f5118dd1ae1d02108aeea4484e20d67e8)
22 lines
550 B
Nix
22 lines
550 B
Nix
{ stdenv, fetchFromGitHub, cmake }:
|
|
stdenv.mkDerivation rec {
|
|
name = "opentracing-cpp-${version}";
|
|
version = "1.5.0";
|
|
src = fetchFromGitHub {
|
|
owner = "opentracing";
|
|
repo = "opentracing-cpp";
|
|
rev = "v${version}";
|
|
sha256 = "09hxj59vvz1ncbx4iblgfc3b5i74hvb3vx5245bwwwfkx5cnj1gg";
|
|
};
|
|
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 ];
|
|
};
|
|
|
|
}
|
|
|