16 stdenv.mkDerivation rec {
20 src = fetchFromGitHub {
24 sha256 = "sha256-grEW3J50osKJzulNQFN7Gir5+wk1qFPc/YaT+EZMAqs=";
27 enableParallelBuilding = true;
30 depsBuildBuild = [ buildPackages.stdenv.cc ];
51 homepage = "https://github.com/tstack/lnav";
52 description = "Logfile Navigator";
54 The log file navigator, lnav, is an enhanced log file viewer that takes
55 advantage of any semantic information that can be gleaned from the files
56 being viewed, such as timestamps and log levels. Using this extra
57 semantic information, lnav can do things like interleaving messages from
58 different files, generate histograms of messages over time, and providing
59 hotkeys for navigating through the file. It is hoped that these features
60 will allow the user to quickly and efficiently zero in on problems.
62 downloadPage = "https://github.com/tstack/lnav/releases";
63 license = licenses.bsd2;
64 maintainers = with maintainers; [ dochang ];
65 platforms = platforms.unix;