2015-03-11 23:13:12 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libestr, json_c, pcre }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-09-18 01:27:21 +00:00
|
|
|
name = "liblognorm-1.1.2";
|
2015-03-11 23:13:12 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.liblognorm.com/files/download/${name}.tar.gz";
|
2015-09-18 01:27:21 +00:00
|
|
|
sha256 = "0v2k5awr6vsbp36gybrys3zfkl675sywhsh4lnm7f21inlpi2nlk";
|
2015-03-11 23:13:12 +00:00
|
|
|
};
|
|
|
|
|
2015-09-18 01:27:21 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libestr json_c pcre ];
|
2015-03-11 23:13:12 +00:00
|
|
|
|
|
|
|
configureFlags = [ "--enable-regexp" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.liblognorm.com/;
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Help to make sense out of syslog data, or, actually, any event data that is present in text form";
|
2015-03-11 23:13:12 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
};
|
|
|
|
}
|