flakelight-php/pkgs/php-krb5.nix
2025-10-25 22:09:31 +02:00

20 lines
387 B
Nix

{
php,
lib,
krb5,
pkg-config,
}:
php.buildPecl {
pname = "krb5";
version = "1.2.4";
sha256 = "sha256-jasdDGGHP4WxG+U9kI5XLqwSQ5nDg3qjETdM7LXhPJ4=";
nativeBuildInputs = [pkg-config];
buildInputs = [krb5];
meta = with lib; {
description = "PECL krb5 extension";
license = licenses.mit;
homepage = "https://github.com/php/pecl-authentication-krb5";
};
}