python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / ip2location-c / default.nix
blobd2da17ddc29f9c242fb8617b48760b4e3f11dd33
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , autoreconfHook
5 }:
7 stdenv.mkDerivation rec {
8   pname = "ip2location-c";
9   version = "8.5.1";
11   src = fetchFromGitHub {
12     owner = "chrislim2888";
13     repo = "IP2Location-C-Library";
14     rev = version;
15     sha256 = "sha256-+Az1bAJ3HT9mIjO43FOcEqxX3oA3RcIY7VvxfaHtBX8=";
16   };
18   nativeBuildInputs = [
19     autoreconfHook
20   ];
22   enableParallelBuilding = true;
24   # Checks require a database, which require registration (although sample
25   # databases are available, downloading them for just 1 test seems excessive):
26   doCheck = false;
28   meta = with lib; {
29     description = "Library to look up locations of host names and IP addresses";
30     longDescription = ''
31       A C library to find the country, region, city,coordinates,
32       zip code, time zone, ISP, domain name, connection type, area code,
33       weather, MCC, MNC, mobile brand name, elevation and usage type of
34       any IP address or host name in the IP2Location databases.
35     '';
36     homepage = "https://www.ip2location.com/developers/c";
37     license = with licenses; [ gpl3Plus lgpl3Plus ];
38     maintainers = with maintainers; [ ];
39     platforms = platforms.linux;
40   };