2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook
|
2019-10-22 01:31:20 +01:00
|
|
|
, drvName ? "geoip"
|
2009-08-26 12:13:36 +01:00
|
|
|
|
2019-10-22 01:31:20 +01:00
|
|
|
# in geoipDatabase, you can insert a package defining
|
|
|
|
# "${geoipDatabase}/share/GeoIP" e.g. geolite-legacy
|
|
|
|
, geoipDatabase ? "/var/lib/geoip-databases"
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2021-01-21 17:00:13 +00:00
|
|
|
dataDir = if lib.isDerivation geoipDatabase
|
2019-10-22 01:31:20 +01:00
|
|
|
then "${toString geoipDatabase}/share/GeoIP"
|
|
|
|
else geoipDatabase;
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = drvName;
|
|
|
|
version = "1.6.12";
|
2014-03-14 16:54:40 +00:00
|
|
|
|
2018-01-28 02:14:32 +00:00
|
|
|
src = fetchFromGitHub {
|
2019-10-22 01:31:20 +01:00
|
|
|
owner = "maxmind";
|
|
|
|
repo = "geoip-api-c";
|
|
|
|
rev = "v${version}";
|
2018-01-28 02:14:32 +00:00
|
|
|
sha256 = "0ixyp3h51alnncr17hqp1p0rlqz9w69nlhm60rbzjjz3vjx52ajv";
|
2014-03-14 16:54:40 +00:00
|
|
|
};
|
2014-01-21 19:23:34 +00:00
|
|
|
|
2018-01-28 02:14:32 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2019-10-22 01:31:20 +01:00
|
|
|
# Cross compilation shenanigans
|
2021-01-21 17:00:13 +00:00
|
|
|
configureFlags = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2018-12-10 22:56:30 +00:00
|
|
|
"ac_cv_func_malloc_0_nonnull=yes"
|
|
|
|
"ac_cv_func_realloc_0_nonnull=yes"
|
|
|
|
];
|
|
|
|
|
2019-10-22 01:31:20 +01:00
|
|
|
# Fix up the default data directory
|
2018-02-22 21:47:36 +00:00
|
|
|
postConfigure = ''
|
2017-07-15 22:50:30 +01:00
|
|
|
find . -name Makefile.in -exec sed -i -r 's#^pkgdatadir\s*=.+$#pkgdatadir = ${dataDir}#' {} \;
|
2015-04-21 03:21:41 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2019-10-22 01:31:20 +01:00
|
|
|
description = "An API for GeoIP/Geolocation databases";
|
|
|
|
maintainers = with maintainers; [ thoughtpolice raskin ];
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.unix;
|
2019-11-16 00:41:23 +00:00
|
|
|
homepage = "https://www.maxmind.com";
|
2009-08-26 12:13:36 +01:00
|
|
|
};
|
|
|
|
}
|