Files
2026-07-15 14:04:39 -04:00

40 lines
729 B
Nix

{
buildPecl,
lib,
fetchFromGitHub,
libmaxminddb,
}:
let
pname = "maxminddb";
version = "1.13.1";
in
buildPecl {
inherit pname version;
src = fetchFromGitHub {
owner = "maxmind";
repo = "MaxMind-DB-Reader-php";
rev = "v${version}";
sha256 = "sha256-rOS6XAap94AtFSZnQO8kEXDRUfr1Y5IhWKRxP6fxSio=";
};
prePatch = ''
cd ext
'';
buildInputs = [ libmaxminddb ];
meta = {
description = "C extension that is a drop-in replacement for MaxMind\\Db\\Reader";
license = lib.licenses.asl20;
homepage = "https://github.com/maxmind/MaxMind-DB-Reader-php";
maintainers = with lib.maintainers; [
das_j
helsinki-Jo
];
teams = [
lib.teams.php
];
};
}