logstalgia: update from 1.0.3 to 1.0.5 and adopt it

This commit is contained in:
Pascal Wittmann 2014-10-02 18:37:38 +02:00
parent 819e4b6a2c
commit 981e93bd34

View File

@ -1,22 +1,22 @@
{ stdenv, fetchurl, SDL, ftgl, pkgconfig, libpng, libjpeg, pcre, SDL_image, glew, mesa }: { stdenv, fetchurl, SDL, ftgl, pkgconfig, libpng, libjpeg, pcre, SDL_image, glew
, mesa, boost, glm }:
let stdenv.mkDerivation rec {
name = "logstalgia-1.0.3"; name = "logstalgia-${version}";
in version = "1.0.5";
stdenv.mkDerivation {
inherit name;
src = fetchurl { src = fetchurl {
url = "http://logstalgia.googlecode.com/files/logstalgia-1.0.3.tar.gz"; url = "https://github.com/acaudwell/Logstalgia/releases/download/${name}/${name}.tar.gz";
sha256 = "1sv1cizyw3y7g558hnvvcal8z889gbr82v4qj35hxdmrzygqlcyk"; sha256 = "0hm4fcakz05j95kb9f14qpspb31xi07paka390dz3g5k980hm9sc";
}; };
buildInputs = [glew SDL ftgl pkgconfig libpng libjpeg pcre SDL_image mesa]; buildInputs = [ glew SDL ftgl pkgconfig libpng libjpeg pcre SDL_image mesa boost
glm ];
meta = { meta = with stdenv.lib; {
homepage = "http://code.google.com/p/logstalgia/"; homepage = http://code.google.com/p/logstalgia;
description = "website traffic visualization tool"; description = "Website traffic visualization tool";
license = stdenv.lib.licenses.gpl3Plus; license = licenses.gpl3Plus;
longDescription = '' longDescription = ''
Logstalgia is a website traffic visualization that replays or Logstalgia is a website traffic visualization that replays or
@ -37,7 +37,7 @@ stdenv.mkDerivation {
a Miscellaneous section. a Miscellaneous section.
''; '';
platforms = stdenv.lib.platforms.gnu; platforms = platforms.gnu;
maintainers = []; maintainers = with maintainers; [ pSub ];
}; };
} }