forked from mirrors/nixpkgs
Merge pull request #7963 from benley/riemann-c-client-1.7.0
riemann-c-client: update to 1.7.0
This commit is contained in:
commit
4d3c1caa7b
|
@ -1,13 +1,16 @@
|
||||||
{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, file, protobufc }:
|
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, file
|
||||||
|
, protobufc }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "riemann-c-client-${version}";
|
name = "riemann-c-client-${version}";
|
||||||
|
|
||||||
version = "1.2.1";
|
version = "1.7.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/algernon/riemann-c-client/archive/${name}.tar.gz";
|
owner = "algernon";
|
||||||
sha256 = "132yd1m523inmv17sd48xf7xdqb7jj36v7is1xw7w9nny6qxkzwm";
|
repo = "riemann-c-client";
|
||||||
|
rev = "54f4a656793d6c5ca0bf1ff2388693fb6b2b82a7";
|
||||||
|
sha256 = "0jc2bbw7sp2gr4cswx78srs0p1kp81prcarq4ivqpfw4bmzg6xg4";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ autoconf automake libtool pkgconfig file protobufc ];
|
buildInputs = [ autoconf automake libtool pkgconfig file protobufc ];
|
||||||
|
@ -15,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||||
preConfigure = "autoreconf -i";
|
preConfigure = "autoreconf -i";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://github.com/algernon/riemann-c-client";
|
homepage = https://github.com/algernon/riemann-c-client;
|
||||||
description = "A C client library for the Riemann monitoring system";
|
description = "A C client library for the Riemann monitoring system";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = [ maintainers.rickynils ];
|
maintainers = [ maintainers.rickynils ];
|
||||||
|
|
Loading…
Reference in a new issue