48 lines
1,022 B
Nix
48 lines
1,022 B
Nix
|
{
|
||
|
stdenv,
|
||
|
buildPecl,
|
||
|
lib,
|
||
|
libiconv,
|
||
|
php,
|
||
|
fetchFromGitHub,
|
||
|
pcre2,
|
||
|
darwin,
|
||
|
}:
|
||
|
|
||
|
buildPecl rec {
|
||
|
pname = "snuffleupagus";
|
||
|
version = "0.11.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "jvoisin";
|
||
|
repo = "snuffleupagus";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-W+EQXjvmDHih5YW/SjRcEdUELePUPKrNWB8vW9dLK/g=";
|
||
|
};
|
||
|
|
||
|
buildInputs =
|
||
|
[ pcre2 ]
|
||
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||
|
darwin.apple_sdk_11_0.frameworks.CoreFoundation
|
||
|
darwin.apple_sdk_11_0.Libsystem
|
||
|
libiconv
|
||
|
];
|
||
|
|
||
|
internalDeps = with php.extensions; [ session ];
|
||
|
|
||
|
sourceRoot = "${src.name}/src";
|
||
|
|
||
|
configureFlags = [ "--enable-snuffleupagus" ];
|
||
|
|
||
|
postPhpize = ''
|
||
|
./configure --enable-snuffleupagus
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
description = "Security module for php7 and php8 - Killing bugclasses and virtual-patching the rest!";
|
||
|
homepage = "https://github.com/jvoisin/snuffleupagus";
|
||
|
license = lib.licenses.lgpl3Only;
|
||
|
maintainers = lib.teams.php.members ++ [ lib.maintainers.zupo ];
|
||
|
};
|
||
|
}
|