nixpkgs/pkgs/tools/misc/goaccess/default.nix
Ryan Mulligan 82cfc448af goaccess: 1.1.1 -> 1.2
Semi-automatic update. These checks were done:

- built on NixOS
- ran `/nix/store/nify4rsvfsn7fbiq1c30060mr3386sz4-goaccess-1.2/bin/goaccess -V` and found version 1.2
- ran `/nix/store/nify4rsvfsn7fbiq1c30060mr3386sz4-goaccess-1.2/bin/goaccess --version` and found version 1.2
- found 1.2 with grep in /nix/store/nify4rsvfsn7fbiq1c30060mr3386sz4-goaccess-1.2
- found 1.2 in filename of file in /nix/store/nify4rsvfsn7fbiq1c30060mr3386sz4-goaccess-1.2
2018-03-08 22:05:08 +01:00

32 lines
844 B
Nix

{ stdenv, fetchurl, pkgconfig, geoipWithDatabase, ncurses, glib }:
stdenv.mkDerivation rec {
version = "1.2";
name = "goaccess-${version}";
src = fetchurl {
url = "http://tar.goaccess.io/goaccess-${version}.tar.gz";
sha256 = "051lrprg9svl5ccc3sif8fl78vfpkrgjcxgi2wngqn7a81jzdabb";
};
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 = http://goaccess.prosoftcorp.com;
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
maintainers = with stdenv.lib.maintainers; [ ederoyd46 garbas ];
};
}