1 { lib, stdenv, fetchurl, autoconf, ncurses, pcre }:
3 stdenv.mkDerivation rec {
7 url = "https://github.com/madhouse/ccze/archive/${name}.tar.gz";
8 sha256 = "1amavfvyls4v0gnikk43n2rpciaspxifgrmvi99qj6imv3mfg66n";
11 buildInputs = [ autoconf ncurses pcre ];
13 preConfigure = "autoheader && autoconf ";
16 description = "Fast, modular log colorizer";
18 Fast log colorizer written in C, intended to be a drop-in replacement
19 for the Perl colorize tool. Includes plugins for a variety of log
20 formats (Apache, Postfix, Procmail, etc.).
22 license = licenses.gpl2;
23 maintainers = with maintainers; [ malyn ];
24 platforms = platforms.linux;