mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
30 lines
913 B
Nix
30 lines
913 B
Nix
{ stdenv, fetchurl, qmake, boost }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "glogg";
|
|
version = "1.1.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://glogg.bonnefon.org/files/${pname}-${version}.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 ];
|
|
};
|
|
}
|