mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
opentracing-cpp: init 1.5.0
This commit is contained in:
parent
c162a0af64
commit
f49df04c02
2 changed files with 14 additions and 0 deletions
12
pkgs/development/libraries/opentracing-cpp/default.nix
Normal file
12
pkgs/development/libraries/opentracing-cpp/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ stdenv, fetchFromGitHub, cmake }:
|
||||
stdenv.mkDerivation {
|
||||
name = "opentracing-cpp";
|
||||
src = fetchFromGitHub {
|
||||
owner = "opentracing";
|
||||
repo = "opentracing-cpp";
|
||||
rev = "v1.5.0";
|
||||
sha256 = "09hxj59vvz1ncbx4iblgfc3b5i74hvb3vx5245bwwwfkx5cnj1gg";
|
||||
};
|
||||
buildInputs = [ cmake ];
|
||||
}
|
||||
|
|
@ -4450,6 +4450,8 @@ with pkgs;
|
|||
|
||||
opae = callPackage ../development/libraries/opae { };
|
||||
|
||||
opentracing-cpp = callPackages ../development/libraries/opentracing-cpp { };
|
||||
|
||||
openvswitch = callPackage ../os-specific/linux/openvswitch { };
|
||||
|
||||
optipng = callPackage ../tools/graphics/optipng {
|
||||
|
|
Loading…
Reference in a new issue