opentracing-cpp: fix version in derivation

This commit is contained in:
Rob Vermaas 2018-10-23 18:15:05 +02:00
parent 9d6184f1bc
commit df29219f51

View File

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