9 stdenv.mkDerivation rec {
10 pname = "loganalyzer";
13 src = fetchFromGitHub {
17 fetchSubmodules = true;
18 hash = "sha256-k9hOGI/TmiftwhSHQEh3ZVV8kkMSs1yKejqHelFSQJ4=";
30 sourceRoot = "${src.name}/src";
35 qmake LogAnalyzer.pro CONFIG+=release PREFIX=/
41 installFlags = [ "INSTALL_ROOT=$(out)" ];
44 ln -s $out/bin/LogAnalyzer $out/bin/loganalyzer
48 description = "Tool that helps you to analyze your log files by reducing the content with patterns you define";
49 homepage = "https://github.com/pbek/loganalyzer";
50 changelog = "https://github.com/pbek/loganalyzer/blob/develop/CHANGELOG.md";
51 downloadPage = "https://github.com/pbek/loganalyzer/releases/tag/v${version}";
52 license = licenses.gpl2Only;
53 maintainers = with maintainers; [ pbek ];
54 platforms = platforms.unix;