nixpkgs/pkgs/development/libraries/opentracing-cpp/default.nix
Rob Vermaas 13649b9eee opentracing-cpp: fix version in derivation
(cherry picked from commit df29219f5118dd1ae1d02108aeea4484e20d67e8)
2018-10-23 18:15:25 +02:00

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 ];
};
}