1 { lib, stdenv, fetchurl, pkg-config, libestr, json_c, pcre, fastJson }:
3 stdenv.mkDerivation rec {
8 url = "http://www.liblognorm.com/files/download/liblognorm-${version}.tar.gz";
9 sha256 = "1wpn15c617r7lfm1z9d5aggmmi339s6yn4pdz698j0r2bkl5gw6g";
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ libestr json_c pcre fastJson ];
15 configureFlags = [ "--enable-regexp" ];
18 description = "Help to make sense out of syslog data, or, actually, any event data that is present in text form";
19 homepage = "https://www.liblognorm.com/";
20 license = licenses.lgpl21;
21 mainProgram = "lognormalizer";
22 platforms = platforms.all;