2015-03-31 14:54:06 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2015-04-16 03:42:31 +01:00
|
|
|
let
|
2015-07-23 03:05:00 +01:00
|
|
|
fetchDB = src: name: sha256: fetchurl {
|
|
|
|
inherit name sha256;
|
|
|
|
url = "https://geolite.maxmind.com/download/geoip/database/${src}";
|
2015-04-16 03:42:31 +01: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.
|
2016-01-25 15:37:13 +00:00
|
|
|
version = "2016-01-25";
|
2015-04-16 03:42:31 +01:00
|
|
|
in
|
2015-03-31 14:54:06 +01:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "geolite-legacy-${version}";
|
|
|
|
|
2015-07-23 03:05:00 +01:00
|
|
|
srcGeoIP = fetchDB
|
|
|
|
"GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz"
|
2016-01-06 10:59:54 +00:00
|
|
|
"07h1ha7z9i877ph41fw4blcfb11ynv8k9snrrsgsjrvv2yqvsc37";
|
2015-07-23 03:05:00 +01:00
|
|
|
srcGeoIPv6 = fetchDB
|
|
|
|
"GeoIPv6.dat.gz" "GeoIPv6.dat.gz"
|
2016-01-06 10:59:54 +00:00
|
|
|
"14wsc0w8ir5q1lq6d9bpr03qvrbi2i0g04gkfcwbnh63yqxc31m9";
|
2015-07-23 03:05:00 +01:00
|
|
|
srcGeoLiteCity = fetchDB
|
|
|
|
"GeoLiteCity.dat.xz" "GeoIPCity.dat.xz"
|
2016-01-06 10:59:54 +00:00
|
|
|
"1nra64shc3bp1d6vk9rdv7wyd8jmkgsybqgr3imdg7fv837kwvnh";
|
2015-07-23 03:05:00 +01:00
|
|
|
srcGeoLiteCityv6 = fetchDB
|
|
|
|
"GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz" "GeoIPCityv6.dat.gz"
|
2016-01-06 10:59:54 +00:00
|
|
|
"1fksbnmda2a05cpax41h9r7jhi8102q41kl5nij4ai42d6yqy73x";
|
2015-07-23 03:05:00 +01:00
|
|
|
srcGeoIPASNum = fetchDB
|
|
|
|
"asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz"
|
2016-01-25 15:37:13 +00:00
|
|
|
"1n7zlmnaxvjljyih9yi9hns530by21h42j2kcszbcyvn7rd9rnyw";
|
2015-07-23 03:05:00 +01:00
|
|
|
srcGeoIPASNumv6 = fetchDB
|
|
|
|
"asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz"
|
2016-01-25 15:37:13 +00:00
|
|
|
"1id60almra7mq4v86p37sfph8jrbdnc5pzxvy55wiyrvf6ydvk56";
|
2015-03-31 14:54:06 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-04-28 21:00:56 +01:00
|
|
|
inherit version;
|
2015-03-31 14:54:06 +01:00
|
|
|
description = "GeoLite Legacy IP geolocation databases";
|
|
|
|
homepage = https://geolite.maxmind.com/download/geoip;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.cc-by-sa-30;
|
2015-08-05 23:30:09 +01:00
|
|
|
platforms = platforms.all;
|
2015-03-31 14:54:06 +01:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
}
|