nixpkgs/pkgs/tools/graphics/logstalgia/default.nix

45 lines
1.7 KiB
Nix
Raw Normal View History

2016-08-28 23:20:22 +00:00
{ stdenv, fetchurl, SDL2, ftgl, pkgconfig, libpng, libjpeg, pcre, SDL2_image, glew
, libGLU_combined, boost, glm, freetype }:
stdenv.mkDerivation rec {
name = "logstalgia-${version}";
2018-06-16 15:19:49 +00:00
version = "1.1.2";
src = fetchurl {
url = "https://github.com/acaudwell/Logstalgia/releases/download/${name}/${name}.tar.gz";
2018-06-16 15:19:49 +00:00
sha256 = "1agwjlwzp1c86hqb1p7rmzqzhd3wpnyh8whsfq4sbx01wj0l0gzd";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glew SDL2 ftgl libpng libjpeg pcre SDL2_image libGLU_combined boost
2016-08-28 23:20:22 +00:00
glm freetype ];
meta = with stdenv.lib; {
homepage = http://logstalgia.io/;
description = "Website traffic visualization tool";
license = licenses.gpl3Plus;
longDescription = ''
Logstalgia is a website traffic visualization that replays or
streams web-server access logs as a pong-like battle between the
web server and an never ending torrent of requests.
Requests appear as colored balls (the same color as the host)
which travel across the screen to arrive at the requested
location. Successful requests are hit by the paddle while
unsuccessful ones (eg 404 - File Not Found) are missed and pass
through.
The paths of requests are summarized within the available space by
identifying common path prefixes. Related paths are grouped
together under headings. For instance, by default paths ending in
png, gif or jpg are grouped under the heading Images. Paths that
dont match any of the specified groups are lumped together under
a Miscellaneous section.
'';
platforms = platforms.gnu ++ platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}