nixpkgs/pkgs/tools/misc/lnav/default.nix
Ryan Mulligan 6d88b7911d lnav: 0.8.2 -> 0.8.3
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/14wbn5qpd1jxqwwbcjdr7jg9fq9qs659-lnav-0.8.3/bin/lnav -h` got 0 exit code
- ran `/nix/store/14wbn5qpd1jxqwwbcjdr7jg9fq9qs659-lnav-0.8.3/bin/lnav -V` and found version 0.8.3
- ran `/nix/store/14wbn5qpd1jxqwwbcjdr7jg9fq9qs659-lnav-0.8.3/bin/lnav -h` and found version 0.8.3
- found 0.8.3 with grep in /nix/store/14wbn5qpd1jxqwwbcjdr7jg9fq9qs659-lnav-0.8.3
- found 0.8.3 in filename of file in /nix/store/14wbn5qpd1jxqwwbcjdr7jg9fq9qs659-lnav-0.8.3

cc "@dochang"
2018-02-26 21:51:08 -08:00

52 lines
1.4 KiB
Nix

{ stdenv, fetchFromGitHub, pcre-cpp, sqlite, ncurses
, readline, zlib, bzip2, autoconf, automake, curl }:
stdenv.mkDerivation rec {
name = "lnav-${meta.version}";
src = fetchFromGitHub {
owner = "tstack";
repo = "lnav";
rev = "v${meta.version}";
sha256 = "0hq9ri6a18z682gihxlbh1rndka0v6brkdqsyfsgh4c2fgib4fb7";
inherit name;
};
buildInputs = [
autoconf
automake
zlib
bzip2
ncurses
pcre-cpp
readline
sqlite
curl
];
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.3";
maintainers = [ maintainers.dochang ];
platforms = platforms.unix;
};
}