nixpkgs/pkgs/development/php-packages/maxminddb/default.nix
2021-01-21 00:46:19 +00:00

25 lines
608 B
Nix

{ buildPecl, lib, pkgs }:
let
pname = "maxminddb";
version = "1.9.0";
in
buildPecl {
inherit pname version;
src = pkgs.fetchFromGitHub {
owner = "maxmind";
repo = "MaxMind-DB-Reader-php";
rev = "v${version}";
sha256 = "sha256-sNG2FhnxzbHA4Lmzj97al1WFwSU70Mr1R2i5ygF1L6Y=";
};
buildInputs = [ pkgs.libmaxminddb ];
sourceRoot = "source/ext";
meta = with pkgs.lib; {
description = "C extension that is a drop-in replacement for MaxMind\\Db\\Reader";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ ajs124 das_j ] ++ teams.php.members;
};
}