mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
Added goaccess package
This commit is contained in:
parent
0572139020
commit
155de0279e
34
pkgs/tools/misc/goaccess/default.nix
Normal file
34
pkgs/tools/misc/goaccess/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ stdenv, fetchurl, pkgconfig, geoip, ncurses, glib }:
|
||||
|
||||
let
|
||||
version = "0.8";
|
||||
mainSrc = fetchurl {
|
||||
url = "http://tar.goaccess.prosoftcorp.com/goaccess-${version}.tar.gz";
|
||||
sha256 = "a61215b1f3e82bdb50c892e843f1a85d6d85f882915d694a5672911fab955eea";
|
||||
};
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "goaccess-${version}";
|
||||
src = mainSrc;
|
||||
|
||||
configureFlags = [
|
||||
"--enable-geoip"
|
||||
"--enable-utf8"
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig
|
||||
geoip
|
||||
ncurses
|
||||
glib
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "GoAccess is an open source 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 ];
|
||||
};
|
||||
}
|
|
@ -1150,6 +1150,8 @@ let
|
|||
|
||||
gnuvd = callPackage ../tools/misc/gnuvd { };
|
||||
|
||||
goaccess = callPackage ../tools/misc/goaccess { };
|
||||
|
||||
googleAuthenticator = callPackage ../os-specific/linux/google-authenticator { };
|
||||
|
||||
gource = callPackage ../applications/version-management/gource {};
|
||||
|
|
Loading…
Reference in a new issue