mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
32 lines
845 B
Nix
32 lines
845 B
Nix
{ stdenv, fetchurl, pkgconfig, geoipWithDatabase, ncurses, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.2";
|
|
name = "goaccess-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://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 ];
|
|
};
|
|
}
|