New pkg: riemann-c-client version 1.1.1
A C client library for the Riemann monitoring system
This commit is contained in:
parent
daa7f344ae
commit
0ee69ef529
24
pkgs/tools/misc/riemann-c-client/default.nix
Normal file
24
pkgs/tools/misc/riemann-c-client/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, file, protobufc }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "riemann-c-client-${version}";
|
||||||
|
|
||||||
|
version = "1.1.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/algernon/riemann-c-client/archive/${name}.tar.gz";
|
||||||
|
sha256 = "10nz20svf1nb6kymwp0x49nvwnxakby33r6jsadish1fjcvzki88";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ autoconf automake libtool pkgconfig file protobufc ];
|
||||||
|
|
||||||
|
preConfigure = "autoreconf -i";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/algernon/riemann-c-client";
|
||||||
|
description = "A C client library for the Riemann monitoring system";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = [ maintainers.rickynils ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -1941,6 +1941,8 @@ let
|
|||||||
|
|
||||||
rdmd = callPackage ../development/compilers/rdmd { };
|
rdmd = callPackage ../development/compilers/rdmd { };
|
||||||
|
|
||||||
|
riemann_c_client = callPackage ../tools/misc/riemann-c-client { };
|
||||||
|
|
||||||
ripmime = callPackage ../tools/networking/ripmime {};
|
ripmime = callPackage ../tools/networking/ripmime {};
|
||||||
|
|
||||||
rkflashtool = callPackage ../tools/misc/rkflashtool { };
|
rkflashtool = callPackage ../tools/misc/rkflashtool { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user