geolite-legacy: use correct local naming scheme
Following http://dev.maxmind.com/geoip/legacy/install/city/: "Then rename the *.dat file to GeoIP.dat, GeoIPRegion.dat, or GeoIPCity.dat, for the GeoIP Country, Region or City databases, respectively." Using the default "GeoLiteCity*.dat" name caused ipv6calc to miss it (verified using `ipv6calc -vv`).
This commit is contained in:
parent
1266e5880e
commit
dfeaaa8909
@ -1,9 +1,9 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
let
|
let
|
||||||
fetchDB = name: sha256: fetchurl {
|
fetchDB = src: name: sha256: fetchurl {
|
||||||
inherit sha256;
|
inherit name sha256;
|
||||||
url = "https://geolite.maxmind.com/download/geoip/database/${name}";
|
url = "https://geolite.maxmind.com/download/geoip/database/${src}";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Annoyingly, these files are updated without a change in URL. This means that
|
# Annoyingly, these files are updated without a change in URL. This means that
|
||||||
@ -13,17 +13,23 @@ in
|
|||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "geolite-legacy-${version}";
|
name = "geolite-legacy-${version}";
|
||||||
|
|
||||||
srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz"
|
srcGeoIP = fetchDB
|
||||||
|
"GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz"
|
||||||
"0c6jcmlgkybsqiwqwa21igjazf95dj38mn516cqqqfdg7ciaj1d5";
|
"0c6jcmlgkybsqiwqwa21igjazf95dj38mn516cqqqfdg7ciaj1d5";
|
||||||
srcGeoIPv6 = fetchDB "GeoIPv6.dat.gz"
|
srcGeoIPv6 = fetchDB
|
||||||
|
"GeoIPv6.dat.gz" "GeoIPv6.dat.gz"
|
||||||
"1vi82p41vas18yp17yk236pn1xamsi9662aav79fa0hm43i3ydx3";
|
"1vi82p41vas18yp17yk236pn1xamsi9662aav79fa0hm43i3ydx3";
|
||||||
srcGeoLiteCity = fetchDB "GeoLiteCity.dat.xz"
|
srcGeoLiteCity = fetchDB
|
||||||
|
"GeoLiteCity.dat.xz" "GeoIPCity.dat.xz"
|
||||||
"0x5ihg7qikzc195nix9r0izvbdnj4hy4rznvaxk56rf8yqcigdyv";
|
"0x5ihg7qikzc195nix9r0izvbdnj4hy4rznvaxk56rf8yqcigdyv";
|
||||||
srcGeoLiteCityv6 = fetchDB "GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz"
|
srcGeoLiteCityv6 = fetchDB
|
||||||
|
"GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz" "GeoIPCityv6.dat.gz"
|
||||||
"0xjzg76vdsayxyy1yyw64w781vad4c9nbhw61slh2qmazdr360g9";
|
"0xjzg76vdsayxyy1yyw64w781vad4c9nbhw61slh2qmazdr360g9";
|
||||||
srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz"
|
srcGeoIPASNum = fetchDB
|
||||||
|
"asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz"
|
||||||
"18kxswr0b5klimfpj1zhxipvyvrljvcywic4jc1ggcr44lf4hj9w";
|
"18kxswr0b5klimfpj1zhxipvyvrljvcywic4jc1ggcr44lf4hj9w";
|
||||||
srcGeoIPASNumv6 = fetchDB "asnum/GeoIPASNumv6.dat.gz"
|
srcGeoIPASNumv6 = fetchDB
|
||||||
|
"asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz"
|
||||||
"0asnmmirridiy57zm0kccb7g8h7ndliswfv3yfk7zm7dk98njnxs";
|
"0asnmmirridiy57zm0kccb7g8h7ndliswfv3yfk7zm7dk98njnxs";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
@ -33,8 +33,8 @@ stdenv.mkDerivation {
|
|||||||
postInstall = ''
|
postInstall = ''
|
||||||
ln -sv ${geolite-legacy}/share/GeoIP/GeoIP.dat $out/etc/netsniff-ng/country4.dat
|
ln -sv ${geolite-legacy}/share/GeoIP/GeoIP.dat $out/etc/netsniff-ng/country4.dat
|
||||||
ln -sv ${geolite-legacy}/share/GeoIP/GeoIPv6.dat $out/etc/netsniff-ng/country6.dat
|
ln -sv ${geolite-legacy}/share/GeoIP/GeoIPv6.dat $out/etc/netsniff-ng/country6.dat
|
||||||
ln -sv ${geolite-legacy}/share/GeoIP/GeoLiteCity.dat $out/etc/netsniff-ng/city4.dat
|
ln -sv ${geolite-legacy}/share/GeoIP/GeoIPCity.dat $out/etc/netsniff-ng/city4.dat
|
||||||
ln -sv ${geolite-legacy}/share/GeoIP/GeoLiteCityv6.dat $out/etc/netsniff-ng/city6.dat
|
ln -sv ${geolite-legacy}/share/GeoIP/GeoIPCityv6.dat $out/etc/netsniff-ng/city6.dat
|
||||||
ln -sv ${geolite-legacy}/share/GeoIP/GeoIPASNum.dat $out/etc/netsniff-ng/asname4.dat
|
ln -sv ${geolite-legacy}/share/GeoIP/GeoIPASNum.dat $out/etc/netsniff-ng/asname4.dat
|
||||||
ln -sv ${geolite-legacy}/share/GeoIP/GeoIPASNumv6.dat $out/etc/netsniff-ng/asname6.dat
|
ln -sv ${geolite-legacy}/share/GeoIP/GeoIPASNumv6.dat $out/etc/netsniff-ng/asname6.dat
|
||||||
rm -v $out/etc/netsniff-ng/geoip.conf # updating databases after installation is impossible
|
rm -v $out/etc/netsniff-ng/geoip.conf # updating databases after installation is impossible
|
||||||
|
Loading…
x
Reference in New Issue
Block a user