1 { lib, stdenv, fetchFromGitHub, autoconf, ncurses, pcre }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
10 rev = "ccze-${version}";
11 hash = "sha256-LVwmbrq78mZcAEuAqjXTqLE5we83H9mcMPtxQx2Tn/c=";
14 nativeBuildInputs = [ autoconf ];
16 buildInputs = [ ncurses pcre ];
24 description = "Fast, modular log colorizer";
26 Fast log colorizer written in C, intended to be a drop-in replacement
27 for the Perl colorize tool. Includes plugins for a variety of log
28 formats (Apache, Postfix, Procmail, etc.).
30 license = licenses.gpl2Plus;
31 maintainers = with maintainers; [ malyn ];
32 platforms = platforms.linux;