2015-03-31 15:54:06 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2015-04-16 04:42:31 +02:00
|
|
|
let
|
2015-07-23 04:05:00 +02:00
|
|
|
fetchDB = src: name: sha256: fetchurl {
|
|
|
|
inherit name sha256;
|
|
|
|
url = "https://geolite.maxmind.com/download/geoip/database/${src}";
|
2015-04-16 04:42:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# Annoyingly, these files are updated without a change in URL. This means that
|
|
|
|
# builds will start failing every month or so, until the hashes are updated.
|
2015-09-03 01:17:27 +02:00
|
|
|
version = "2015-09-03";
|
2015-04-16 04:42:31 +02:00
|
|
|
in
|
2015-03-31 15:54:06 +02:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "geolite-legacy-${version}";
|
|
|
|
|
2015-07-23 04:05:00 +02:00
|
|
|
srcGeoIP = fetchDB
|
|
|
|
"GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz"
|
2015-09-03 01:17:27 +02:00
|
|
|
"11xv6ws0gzyj9bf1j1g67cklkkl6s4wb6z6n7kxjcxnn2274nfy0";
|
2015-07-23 04:05:00 +02:00
|
|
|
srcGeoIPv6 = fetchDB
|
|
|
|
"GeoIPv6.dat.gz" "GeoIPv6.dat.gz"
|
2015-09-03 01:17:27 +02:00
|
|
|
"1q5vgk522wq5ybhbw86zk8njgg611kc46a22vkrp08vklbni3akz";
|
2015-07-23 04:05:00 +02:00
|
|
|
srcGeoLiteCity = fetchDB
|
|
|
|
"GeoLiteCity.dat.xz" "GeoIPCity.dat.xz"
|
2015-09-03 01:17:27 +02:00
|
|
|
"07hx9g6kif75icsblcdk64rq13w2knpns4lrxdbf63mmqbqxj29g";
|
2015-07-23 04:05:00 +02:00
|
|
|
srcGeoLiteCityv6 = fetchDB
|
|
|
|
"GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz" "GeoIPCityv6.dat.gz"
|
2015-09-03 01:17:27 +02:00
|
|
|
"0f3y1cpjfd4q55a2kvhzsklmmp6k19v9vsdsjxr4sapc8f5fgfc9";
|
2015-07-23 04:05:00 +02:00
|
|
|
srcGeoIPASNum = fetchDB
|
|
|
|
"asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz"
|
2015-08-31 16:42:37 +02:00
|
|
|
"0pg3715cjmajrfr5xad3g9z386gyk35zq3zkk7ah6sfidavik6vc";
|
2015-07-23 04:05:00 +02:00
|
|
|
srcGeoIPASNumv6 = fetchDB
|
|
|
|
"asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz"
|
2015-08-31 16:42:37 +02:00
|
|
|
"1ajk18ydzhwflki25cp7fhzfphysgndig3h0f9p655qhsm0c3gzj";
|
2015-03-31 15:54:06 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-04-28 22:00:56 +02:00
|
|
|
inherit version;
|
2015-03-31 15:54:06 +02:00
|
|
|
description = "GeoLite Legacy IP geolocation databases";
|
|
|
|
homepage = https://geolite.maxmind.com/download/geoip;
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.cc-by-sa-30;
|
2015-08-06 00:30:09 +02:00
|
|
|
platforms = platforms.all;
|
2015-03-31 15:54:06 +02:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
}
|