summary refs log tree commit diff
path: root/pkgs/development/libraries/liblognorm/default.nix
blob: a21b65170d390dd9fd330e949f6897304d4971d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, pkgconfig, libestr, json_c, pcre, fastJson }:

stdenv.mkDerivation rec {
  name = "liblognorm-2.0.5";

  src = fetchurl {
    url = "http://www.liblognorm.com/files/download/${name}.tar.gz";
    sha256 = "145i1lrl2n145189i7l2a62yazjg9rkyma5jic41y0r17fl1s5f8";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ libestr json_c pcre fastJson ];

  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";
    license = licenses.lgpl21;
    platforms = platforms.all;
    maintainers = with maintainers; [ wkennington ];
  };
}