2021-02-27 10:29:20 +00:00
|
|
|
{ buildPecl, lib, fetchFromGitHub, libmaxminddb }:
|
2020-10-11 17:05:50 +00:00
|
|
|
let
|
|
|
|
pname = "maxminddb";
|
2021-12-08 07:04:25 +00:00
|
|
|
version = "1.11.0";
|
2020-10-11 17:05:50 +00:00
|
|
|
in
|
|
|
|
buildPecl {
|
|
|
|
inherit pname version;
|
|
|
|
|
2021-02-27 10:29:20 +00:00
|
|
|
src = fetchFromGitHub {
|
2020-10-11 17:05:50 +00:00
|
|
|
owner = "maxmind";
|
|
|
|
repo = "MaxMind-DB-Reader-php";
|
|
|
|
rev = "v${version}";
|
2021-12-08 07:04:25 +00:00
|
|
|
sha256 = "sha256-Dw1+pYJmZ3U2+rgSOEkx4a6HB8FebSr7YZodOjSipjI=";
|
2020-10-11 17:05:50 +00:00
|
|
|
};
|
|
|
|
|
2022-01-04 04:40:04 +00:00
|
|
|
prePatch = ''
|
|
|
|
cd ext
|
|
|
|
'';
|
|
|
|
|
2021-02-27 10:29:20 +00:00
|
|
|
buildInputs = [ libmaxminddb ];
|
2020-10-11 17:05:50 +00:00
|
|
|
|
2021-02-27 10:29:20 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 17:05:50 +00:00
|
|
|
description = "C extension that is a drop-in replacement for MaxMind\\Db\\Reader";
|
|
|
|
license = with licenses; [ asl20 ];
|
2021-06-08 09:50:05 +00:00
|
|
|
homepage = "https://github.com/maxmind/MaxMind-DB-Reader-php";
|
2020-10-11 17:05:50 +00:00
|
|
|
maintainers = with maintainers; [ ajs124 das_j ] ++ teams.php.members;
|
|
|
|
};
|
|
|
|
}
|