nixpkgs/pkgs/development/libraries/prometheus-cpp/default.nix
R. RyanTM a9fa690679 prometheus-cpp: 0.6.0 -> 0.7.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/prometheus-cpp/versions
2019-06-17 08:02:09 -07:00

42 lines
869 B
Nix

{ stdenv
, fetchFromGitHub
, cmake
, gbenchmark
, gtest
, civetweb
, zlib
, curl
}:
stdenv.mkDerivation rec {
pname = "prometheus-cpp";
version = "0.7.0";
src = fetchFromGitHub {
owner = "jupp0r";
repo = pname;
rev = "v${version}";
sha256 = "15bda1q1jbvixbx1qf41ykcdmsywhhwmi4xgsha12r5m9fh8jzxj";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ gbenchmark civetweb gtest zlib curl ];
strictDeps = true;
cmakeFlags = [
"-DUSE_THIRDPARTY_LIBRARIES=OFF"
"-DCIVETWEB_INCLUDE_DIR=${civetweb.dev}/include"
"-DCIVETWEB_CXX_LIBRARY=${civetweb}/lib/libcivetweb${stdenv.targetPlatform.extensions.sharedLibrary}"
];
NIX_LDFLAGS = [ "-ldl" ];
meta = {
description = "Prometheus Client Library for Modern C++";
homepage = https://github.com/jupp0r/prometheus-cpp;
license = [ stdenv.lib.licenses.mit ];
};
}