Skip to content

Commit

Permalink
opentracing-cpp: fix version in derivation
Browse files Browse the repository at this point in the history
  • Loading branch information
rbvermaa committed Oct 23, 2018
1 parent 9d6184f commit df29219
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkgs/development/libraries/opentracing-cpp/default.nix
@@ -1,10 +1,11 @@
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation {
name = "opentracing-cpp";
stdenv.mkDerivation rec {
name = "opentracing-cpp-${version}";
version = "1.5.0";
src = fetchFromGitHub {
owner = "opentracing";
repo = "opentracing-cpp";
rev = "v1.5.0";
rev = "v${version}";
sha256 = "09hxj59vvz1ncbx4iblgfc3b5i74hvb3vx5245bwwwfkx5cnj1gg";
};
buildInputs = [ cmake ];
Expand Down

0 comments on commit df29219

Please sign in to comment.