Merge pull request #69312 from elohmeier/goaccess

goaccess: fix geoip database configuration
This commit is contained in:
Jörg Thalheim 2019-09-24 15:17:44 +01:00 committed by GitHub
commit b08cdf0a08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
];