nixpkgs/pkgs/tools/misc/goaccess/default.nix
R. RyanTM 2aa36e2c8e goaccess: 1.2 -> 1.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/goaccess/versions
2018-12-15 21:12:24 -08:00

32 lines
833 B
Nix

{ stdenv, fetchurl, pkgconfig, geoipWithDatabase, ncurses, glib }:
stdenv.mkDerivation rec {
version = "1.3";
name = "goaccess-${version}";
src = fetchurl {
url = "https://tar.goaccess.io/goaccess-${version}.tar.gz";
sha256 = "16vv3pj7pbraq173wlxa89jjsd279004j4kgzlrsk1dz4if5qxwc";
};
configureFlags = [
"--enable-geoip"
"--enable-utf8"
];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
geoipWithDatabase
ncurses
glib
];
meta = {
description = "Real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems";
homepage = https://goaccess.io;
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
maintainers = with stdenv.lib.maintainers; [ ederoyd46 garbas ];
};
}