2016-01-17 23:04:40 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, file , protobufc }:
|
2014-07-07 16:05:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "riemann-c-client-${version}";
|
|
|
|
|
2015-05-24 01:01:51 +00:00
|
|
|
version = "1.7.0";
|
2014-07-07 16:05:30 +00:00
|
|
|
|
2015-05-24 01:01:51 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "algernon";
|
|
|
|
repo = "riemann-c-client";
|
|
|
|
rev = "54f4a656793d6c5ca0bf1ff2388693fb6b2b82a7";
|
|
|
|
sha256 = "0jc2bbw7sp2gr4cswx78srs0p1kp81prcarq4ivqpfw4bmzg6xg4";
|
2014-07-07 16:05:30 +00:00
|
|
|
};
|
|
|
|
|
2016-01-17 23:04:40 +00:00
|
|
|
buildInputs = [ autoreconfHook pkgconfig file protobufc ];
|
2014-07-07 16:05:30 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-05-24 01:01:51 +00:00
|
|
|
homepage = https://github.com/algernon/riemann-c-client;
|
2014-07-07 16:05:30 +00:00
|
|
|
description = "A C client library for the Riemann monitoring system";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.rickynils ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|