16 stdenv.mkDerivation rec {
20 src = fetchFromGitHub {
24 sha256 = "sha256-W0NXmdbrarSmLOLpl9bt9kYjjDBtejGgh0QYeGFVMNQ=";
27 patches = [ ./0001-Forcefully-disable-docs-build.patch ];
29 substituteInPlace Makefile.am \
30 --replace "SUBDIRS = tools src test" "SUBDIRS = tools src"
33 enableParallelBuilding = true;
36 depsBuildBuild = [ buildPackages.stdenv.cc ];
57 homepage = "https://github.com/tstack/lnav";
58 description = "The Logfile Navigator";
60 The log file navigator, lnav, is an enhanced log file viewer that takes
61 advantage of any semantic information that can be gleaned from the files
62 being viewed, such as timestamps and log levels. Using this extra
63 semantic information, lnav can do things like interleaving messages from
64 different files, generate histograms of messages over time, and providing
65 hotkeys for navigating through the file. It is hoped that these features
66 will allow the user to quickly and efficiently zero in on problems.
68 downloadPage = "https://github.com/tstack/lnav/releases";
69 license = licenses.bsd2;
70 maintainers = with maintainers; [ dochang ma27 ];
71 platforms = platforms.unix;