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

stdenv.mkDerivation rec {
  name = "liblognorm-1.1.1";
  
  src = fetchurl {
    url = "http://www.liblognorm.com/files/download/${name}.tar.gz";
    sha256 = "1wi28n5ahajvl64wfn7jpvnskccd6837i0cyq8w8cvrm362b6pd7";
  };

  buildInputs = [ pkgconfig libestr json_c pcre ];
  
  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 ];
  };
}