b5556f2c37
maintainers/teams: init and add helsinki-systems
28 lines
687 B
Nix
28 lines
687 B
Nix
{ buildPecl, lib, fetchFromGitHub, libmaxminddb }:
|
|
let
|
|
pname = "maxminddb";
|
|
version = "1.11.1";
|
|
in
|
|
buildPecl {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "maxmind";
|
|
repo = "MaxMind-DB-Reader-php";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-e22HVsD0YstGQiRch0zUUF5CY1zSuFCyU2anK9uGCY4=";
|
|
};
|
|
|
|
prePatch = ''
|
|
cd ext
|
|
'';
|
|
|
|
buildInputs = [ libmaxminddb ];
|
|
|
|
meta = with lib; {
|
|
description = "C extension that is a drop-in replacement for MaxMind\\Db\\Reader";
|
|
license = with licenses; [ asl20 ];
|
|
homepage = "https://github.com/maxmind/MaxMind-DB-Reader-php";
|
|
maintainers = teams.helsinki-systems.members ++ teams.php.members;
|
|
};
|
|
}
|