glogg: init at 1.1.4

(#50520)
This commit is contained in:
Renaud 2018-11-17 23:04:41 +01:00 committed by GitHub
parent 226c3e11a0
commit 866b1dbeda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ stdenv, fetchurl, qmake, boost }:
stdenv.mkDerivation rec {
name = "glogg-${version}";
version = "1.1.4";
src = fetchurl {
url = "https://glogg.bonnefon.org/files/${name}.tar.gz";
sha256 = "0nwnfk9bcz2k7rf08w2cb6qipzdhwmxznik44jxmn9gwxdrdq78c";
};
nativeBuildInputs = [ qmake ];
buildInputs = [ boost ];
qmakeFlags = [ "glogg.pro" ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "The fast, smart log explorer";
longDescription = ''
A multi-platform GUI application to browse and search through long or complex log files. It is designed with programmers and system administrators in mind. glogg can be seen as a graphical, interactive combination of grep and less.
'';
homepage = https://glogg.bonnefon.org/;
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ c0bw3b ];
};
}

View File

@ -2898,6 +2898,8 @@ with pkgs;
glmark2 = callPackage ../tools/graphics/glmark2 { };
glogg = libsForQt5.callPackage ../tools/text/glogg { };
glxinfo = callPackage ../tools/graphics/glxinfo { };
gmrender-resurrect = callPackage ../tools/networking/gmrender-resurrect {