mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
parent
226c3e11a0
commit
866b1dbeda
29
pkgs/tools/text/glogg/default.nix
Normal file
29
pkgs/tools/text/glogg/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user