2015-09-07 02:54:15 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2016-01-24 20:31:44 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-09-07 02:54:15 +02:00
|
|
|
name = "ip2location-${version}";
|
2016-01-24 20:31:44 +01:00
|
|
|
version = "7.0.0";
|
2015-09-07 02:54:15 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
sha256 = "05zbc02z7vm19byafi05i1rnkxc6yrfkhnm30ly68zzyipkmzx1l";
|
|
|
|
url = "http://www.ip2location.com/downloads/ip2location-${version}.tar.gz";
|
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-09-07 03:12:53 +02:00
|
|
|
description = "Look up locations of host names and IP addresses";
|
2015-09-07 02:54:15 +02:00
|
|
|
longDescription = ''
|
2015-09-07 03:12:53 +02:00
|
|
|
A command-line tool to find the country, region, city,coordinates,
|
|
|
|
zip code, time zone, ISP, domain name, connection type, area code,
|
|
|
|
weather, MCC, MNC, mobile brand name, elevation and usage type of
|
|
|
|
any IP address or host name in the IP2Location databases.
|
2015-09-07 02:54:15 +02:00
|
|
|
'';
|
2015-09-07 03:12:53 +02:00
|
|
|
homepage = http://www.ip2location.com/free/applications;
|
2015-09-07 02:54:15 +02:00
|
|
|
license = with licenses; [ gpl3Plus lgpl3Plus ];
|
2015-09-07 12:45:23 +02:00
|
|
|
platforms = platforms.linux;
|
2015-09-07 02:54:15 +02:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
|
|
|
}
|