linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / ccze / default.nix
blobaf37d7a33c1a04c9fc7cb4dabc5a876fc5e2aad8
1 { lib, stdenv, fetchurl, autoconf, ncurses, pcre }:
3 stdenv.mkDerivation rec {
4   name = "ccze-0.2.1-2";
6   src = fetchurl {
7     url = "https://github.com/madhouse/ccze/archive/${name}.tar.gz";
8     sha256 = "1amavfvyls4v0gnikk43n2rpciaspxifgrmvi99qj6imv3mfg66n";
9   };
11   buildInputs = [ autoconf ncurses pcre ];
13   preConfigure = "autoheader && autoconf ";
15   meta = with 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   };