mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
opentracing-cpp: fix version in derivation
This commit is contained in:
parent
9d6184f1bc
commit
df29219f51
@ -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 ];
|
||||
|
Loading…
Reference in New Issue
Block a user