2016-08-29 01:20:22 +02:00
|
|
|
|
{ stdenv, fetchurl, SDL2, ftgl, pkgconfig, libpng, libjpeg, pcre, SDL2_image, glew
|
2018-02-24 14:12:44 +01:00
|
|
|
|
, libGLU_combined, 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}";
|
2018-02-27 06:56:49 +01:00
|
|
|
|
version = "1.1.1";
|
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";
|
2018-02-27 06:56:49 +01:00
|
|
|
|
sha256 = "0nvnk8q9m2ignzwxak0vch88blywbx4znk70xf9fg38xa4rf94yn";
|
2012-01-16 12:34:00 +01:00
|
|
|
|
};
|
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-24 14:12:44 +01:00
|
|
|
|
buildInputs = [ glew SDL2 ftgl libpng libjpeg pcre SDL2_image libGLU_combined 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; {
|
2017-10-27 01:44:19 +02:00
|
|
|
|
homepage = http://logstalgia.io/;
|
2014-10-02 18:37:38 +02:00
|
|
|
|
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.
|
|
|
|
|
'';
|
|
|
|
|
|
2018-05-01 00:43:54 +02:00
|
|
|
|
platforms = platforms.gnu ++ platforms.linux;
|
2014-10-02 18:37:38 +02:00
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2012-01-16 12:34:00 +01:00
|
|
|
|
};
|
|
|
|
|
}
|