3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/liblognorm/default.nix

24 lines
728 B
Nix
Raw Normal View History

2018-08-08 00:32:37 +01:00
{ stdenv, fetchurl, pkgconfig, libestr, json_c, pcre, fastJson }:
2015-03-11 23:13:12 +00:00
stdenv.mkDerivation rec {
2018-08-08 00:32:37 +01:00
name = "liblognorm-2.0.5";
2015-03-11 23:13:12 +00:00
src = fetchurl {
url = "http://www.liblognorm.com/files/download/${name}.tar.gz";
2018-08-08 00:32:37 +01:00
sha256 = "145i1lrl2n145189i7l2a62yazjg9rkyma5jic41y0r17fl1s5f8";
2015-03-11 23:13:12 +00:00
};
2015-09-18 02:27:21 +01:00
nativeBuildInputs = [ pkgconfig ];
2018-08-08 00:32:37 +01:00
buildInputs = [ libestr json_c pcre fastJson ];
2015-03-11 23:13:12 +00:00
configureFlags = [ "--enable-regexp" ];
meta = with stdenv.lib; {
homepage = http://www.liblognorm.com/;
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 ];
};
}