nixpkgs/pkgs/tools/misc/lnav/default.nix

56 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pcre-cpp, sqlite, ncurses
2017-05-09 10:47:19 +00:00
, readline, zlib, bzip2, autoconf, automake, curl }:
2015-11-20 06:30:49 +00:00
stdenv.mkDerivation rec {
name = "lnav-${meta.version}";
src = fetchFromGitHub {
owner = "tstack";
repo = "lnav";
rev = "v${meta.version}";
sha256 = "1frdrr3yjlk2fns3ny0qbr30rpswhwlvv3kyhdl3l6a0q5cqaqsg";
2015-11-20 06:30:49 +00:00
inherit name;
};
buildInputs = [
autoconf
automake
zlib
bzip2
ncurses
pcre-cpp
2015-11-20 06:30:49 +00:00
readline
sqlite
2017-05-09 10:47:19 +00:00
curl
2015-11-20 06:30:49 +00:00
];
postPatch = ''
sed -ie '/DUMP_INTERNALS/d' src/Makefile.am
'';
2015-11-20 06:30:49 +00:00
preConfigure = ''
./autogen.sh
'';
meta = with lib; {
homepage = "https://github.com/tstack/lnav";
2015-11-20 06:30:49 +00:00
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.9.0";
maintainers = with maintainers; [ dochang ma27 ];
platforms = platforms.unix;
2015-11-20 06:30:49 +00:00
};
}