bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
29 lines
749 B
Nix
29 lines
749 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
php,
|
|
}:
|
|
|
|
php.buildComposerProject (finalAttrs: {
|
|
pname = "psysh";
|
|
version = "0.11.21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bobthecow";
|
|
repo = "psysh";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-YuBn4mrgOzGeMGfGcyZySAISmQdv3WRGn91PRozyxdI=";
|
|
};
|
|
|
|
composerLock = ./composer.lock;
|
|
vendorHash = "sha256-FZFeO7UiVssxTf0JX6wdjrAE+jucYnfQJA1eOng39lQ=";
|
|
|
|
meta = {
|
|
changelog = "https://github.com/bobthecow/psysh/releases/tag/v${finalAttrs.version}";
|
|
description = "PsySH is a runtime developer console, interactive debugger and REPL for PHP";
|
|
mainProgram = "psysh";
|
|
license = lib.licenses.mit;
|
|
homepage = "https://psysh.org/";
|
|
maintainers = lib.teams.php.members;
|
|
};
|
|
})
|