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