5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
47 lines
1,009 B
Nix
47 lines
1,009 B
Nix
{
|
|
stdenv,
|
|
buildPecl,
|
|
lib,
|
|
libiconv,
|
|
php,
|
|
fetchFromGitHub,
|
|
pcre2,
|
|
darwin,
|
|
}:
|
|
|
|
buildPecl rec {
|
|
pname = "snuffleupagus";
|
|
version = "0.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jvoisin";
|
|
repo = "snuffleupagus";
|
|
rev = "v${version}";
|
|
hash = "sha256-NwG8gBaToBaJGrZoCD7bDym7hQidWU0ArckoQCHN81o=";
|
|
};
|
|
|
|
buildInputs =
|
|
[ pcre2 ]
|
|
++ lib.optionals stdenv.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 ];
|
|
};
|
|
}
|