lol
at 18.03-beta 26 lines 779 B view raw
1{ stdenv, fetchurl, autoconf, ncurses, pcre }: 2 3stdenv.mkDerivation rec { 4 name = "ccze-0.2.1-2"; 5 6 src = fetchurl { 7 url = "https://github.com/madhouse/ccze/archive/${name}.tar.gz"; 8 sha256 = "1amavfvyls4v0gnikk43n2rpciaspxifgrmvi99qj6imv3mfg66n"; 9 }; 10 11 buildInputs = [ autoconf ncurses pcre ]; 12 13 preConfigure = '' autoheader && autoconf ''; 14 15 meta = with stdenv.lib; { 16 description = "Fast, modular log colorizer"; 17 longDescription = '' 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.). 21 ''; 22 license = licenses.gpl2; 23 maintainers = with maintainers; [ malyn ]; 24 platforms = platforms.linux; 25 }; 26}