f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
32 lines
896 B
Nix
32 lines
896 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
php,
|
|
}:
|
|
|
|
(php.withExtensions ({ enabled, all }: enabled ++ (with all; [ ast ]))).buildComposerProject
|
|
(finalAttrs: {
|
|
pname = "phan";
|
|
version = "5.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phan";
|
|
repo = "phan";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-9kHTDuCvh0qV6Av6uLD0t4vJO5XLL9dgRAgaREsV7zM=";
|
|
};
|
|
|
|
vendorHash = "sha256-yE85MBseJa0VGV5EbjT0te4QT3697YvtumGkMMfZtxI=";
|
|
|
|
meta = {
|
|
description = "Static analyzer for PHP";
|
|
homepage = "https://github.com/phan/phan";
|
|
license = lib.licenses.mit;
|
|
longDescription = ''
|
|
Phan is a static analyzer for PHP. Phan prefers to avoid false-positives
|
|
and attempts to prove incorrectness rather than correctness.
|
|
'';
|
|
mainProgram = "phan";
|
|
maintainers = with lib.maintainers; [ apeschar ] ++ lib.teams.php.members;
|
|
};
|
|
})
|