mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
goaccess: fix geoip database configuration
This commit is contained in:
parent
c8bc18bcc2
commit
b3b95bc86d
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkgconfig, geoipWithDatabase, ncurses, glib }:
|
||||
{ stdenv, fetchurl, pkgconfig, ncurses, glib, libmaxminddb }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.3";
|
||||
@ -10,13 +10,13 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
configureFlags = [
|
||||
"--enable-geoip"
|
||||
"--enable-geoip=mmdb"
|
||||
"--enable-utf8"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [
|
||||
geoipWithDatabase
|
||||
libmaxminddb
|
||||
ncurses
|
||||
glib
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user