ip2location: move to tools/networking
This commit is contained in:
parent
071e9c0680
commit
595063ffa7
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
let version = "7.0.0"; in # meta.homepage might change after a major update
|
let version = "7.0.0"; in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "ip2location-${version}";
|
name = "ip2location-${version}";
|
||||||
|
|
||||||
|
@ -15,14 +15,14 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
inherit version;
|
inherit version;
|
||||||
description = "Library to look up locations of host names and IP addresses";
|
description = "Look up locations of host names and IP addresses";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
A command-line tool and C library to find the country, region, city,
|
A command-line tool to find the country, region, city,coordinates,
|
||||||
coordinates, zip code, time zone, ISP, domain name, connection type,
|
zip code, time zone, ISP, domain name, connection type, area code,
|
||||||
area code, weather, MCC, MNC, mobile brand name, elevation and usage
|
weather, MCC, MNC, mobile brand name, elevation and usage type of
|
||||||
type of any IP address or host name in the IP2Location databases.
|
any IP address or host name in the IP2Location databases.
|
||||||
'';
|
'';
|
||||||
homepage = http://www.ip2location.com/developers/c-7;
|
homepage = http://www.ip2location.com/free/applications;
|
||||||
license = with licenses; [ gpl3Plus lgpl3Plus ];
|
license = with licenses; [ gpl3Plus lgpl3Plus ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ nckx ];
|
maintainers = with maintainers; [ nckx ];
|
|
@ -1937,6 +1937,8 @@ let
|
||||||
|
|
||||||
iodine = callPackage ../tools/networking/iodine { };
|
iodine = callPackage ../tools/networking/iodine { };
|
||||||
|
|
||||||
|
ip2location = callPackage ../tools/networking/ip2location { };
|
||||||
|
|
||||||
ipad_charge = callPackage ../tools/misc/ipad_charge { };
|
ipad_charge = callPackage ../tools/misc/ipad_charge { };
|
||||||
|
|
||||||
iperf2 = callPackage ../tools/networking/iperf/2.nix { };
|
iperf2 = callPackage ../tools/networking/iperf/2.nix { };
|
||||||
|
@ -6686,8 +6688,6 @@ let
|
||||||
|
|
||||||
intltool = callPackage ../development/tools/misc/intltool { };
|
intltool = callPackage ../development/tools/misc/intltool { };
|
||||||
|
|
||||||
ip2location = callPackage ../development/libraries/ip2location { };
|
|
||||||
|
|
||||||
irrlicht = callPackage ../development/libraries/irrlicht { };
|
irrlicht = callPackage ../development/libraries/irrlicht { };
|
||||||
irrlicht3843 = callPackage ../development/libraries/irrlicht/irrlicht3843.nix { };
|
irrlicht3843 = callPackage ../development/libraries/irrlicht/irrlicht3843.nix { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue