lnav: init at 0.8.0

This commit is contained in:
Desmond O. Chang 2015-11-20 14:30:49 +08:00
parent af79c2ac59
commit ac271677b9
2 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,49 @@
{ stdenv, fetchFromGitHub, pcre, sqlite, ncurses,
readline, zlib, bzip2, autoconf, automake }:
stdenv.mkDerivation rec {
name = "lnav-${meta.version}";
src = fetchFromGitHub {
owner = "tstack";
repo = "lnav";
rev = "v${meta.version}";
sha256 = "06h0hy8k0w692df2490dshxf2x8qcnw5myyp0k5jkc63ai2ra6aq";
inherit name;
};
buildInputs = [
autoconf
automake
zlib
bzip2
ncurses
pcre
readline
sqlite
];
preConfigure = ''
./autogen.sh
'';
meta = with stdenv.lib; {
homepage = "https://github.com/tstack/lnav";
description = "The Logfile Navigator";
longDescription = ''
The log file navigator, lnav, is an enhanced log file viewer that takes
advantage of any semantic information that can be gleaned from the files
being viewed, such as timestamps and log levels. Using this extra
semantic information, lnav can do things like interleaving messages from
different files, generate histograms of messages over time, and providing
hotkeys for navigating through the file. It is hoped that these features
will allow the user to quickly and efficiently zero in on problems.
'';
downloadPage = "https://github.com/tstack/lnav/releases";
license = licenses.bsd2;
version = "0.8.0";
maintainers = [ maintainers.dochang ];
};
}

View file

@ -2003,6 +2003,8 @@ let
liquidsoap = callPackage ../tools/audio/liquidsoap/full.nix { };
lnav = callPackage ../tools/misc/lnav { };
lockfileProgs = callPackage ../tools/misc/lockfile-progs { };
logstash = callPackage ../tools/misc/logstash { };