2016-08-29 01:20:22 +02:00
|
|
|
|
{ stdenv, fetchurl, SDL2, ftgl, pkgconfig, libpng, libjpeg, pcre, SDL2_image, glew
|
|
|
|
|
, mesa, boost, glm, freetype }:
|
2012-01-16 12:34:00 +01:00
|
|
|
|
|
2014-10-02 18:37:38 +02:00
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
name = "logstalgia-${version}";
|
2015-10-26 14:41:58 +01:00
|
|
|
|
version = "1.0.7";
|
2012-01-16 12:34:00 +01:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-10-02 18:37:38 +02:00
|
|
|
|
url = "https://github.com/acaudwell/Logstalgia/releases/download/${name}/${name}.tar.gz";
|
2015-10-26 14:41:58 +01:00
|
|
|
|
sha256 = "1qghz1j3jmfj093br2hfyibayg3fmhg8fvp5ix9n9rbvzc1zslsm";
|
2012-01-16 12:34:00 +01:00
|
|
|
|
};
|
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
buildInputs = [ glew SDL2 ftgl libpng libjpeg pcre SDL2_image mesa boost
|
2016-08-29 01:20:22 +02:00
|
|
|
|
glm freetype ];
|
2012-01-16 12:34:00 +01:00
|
|
|
|
|
2014-10-02 18:37:38 +02:00
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
homepage = http://code.google.com/p/logstalgia;
|
|
|
|
|
description = "Website traffic visualization tool";
|
|
|
|
|
license = licenses.gpl3Plus;
|
2012-01-16 12:34:00 +01:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
don’t match any of the specified groups are lumped together under
|
|
|
|
|
a Miscellaneous section.
|
|
|
|
|
'';
|
|
|
|
|
|
2014-10-02 18:37:38 +02:00
|
|
|
|
platforms = platforms.gnu;
|
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2012-01-16 12:34:00 +01:00
|
|
|
|
};
|
|
|
|
|
}
|