mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
geoip: add geoipWithDatabase for shell use
This installs (by default) geolite-legacy as the default database for geoiplookup
This commit is contained in:
parent
74235b70f1
commit
cf07760a2c
@ -1,15 +1,24 @@
|
||||
{ stdenv, fetchurl }:
|
||||
# in geoipDatabase, you can insert a package defining ${geoipDatabase}/share/GeoIP
|
||||
# e.g. geolite-legacy
|
||||
{ stdenv, fetchurl, pkgs, drvName ? "geoip", geoipDatabase ? null }:
|
||||
|
||||
let version = "1.6.2"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "geoip-${version}";
|
||||
name = "${drvName}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://geolite.maxmind.com/download/geoip/api/c/GeoIP-${version}.tar.gz";
|
||||
sha256 = "0dd6si4cvip73kxdn43apg6yygvaf7dnk5awqfg9w2fd2ll0qnh7";
|
||||
};
|
||||
|
||||
postInstall = ''
|
||||
DB=${toString geoipDatabase}
|
||||
if [ -n "$DB" ]; then
|
||||
ln -s $DB/share/GeoIP $out/share/GeoIP
|
||||
fi
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Geolocation API";
|
||||
maintainers = [ stdenv.lib.maintainers.raskin ];
|
||||
|
@ -5767,6 +5767,11 @@ let
|
||||
|
||||
geoclue2 = callPackage ../development/libraries/geoclue/2.0.nix {};
|
||||
|
||||
geoipWithDatabase = makeOverridable (callPackage ../development/libraries/geoip) {
|
||||
drvName = "geoip-tools";
|
||||
geoipDatabase = geolite-legacy;
|
||||
};
|
||||
|
||||
geoip = callPackage ../development/libraries/geoip { };
|
||||
|
||||
geoipjava = callPackage ../development/libraries/java/geoipjava { };
|
||||
|
Loading…
Reference in New Issue
Block a user