fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 fetchFromGitHub,
3 lib,
4 php,
5}:
6
7php.buildComposerProject (finalAttrs: {
8 pname = "psysh";
9 version = "0.11.21";
10
11 src = fetchFromGitHub {
12 owner = "bobthecow";
13 repo = "psysh";
14 rev = "v${finalAttrs.version}";
15 hash = "sha256-YuBn4mrgOzGeMGfGcyZySAISmQdv3WRGn91PRozyxdI=";
16 };
17
18 composerLock = ./composer.lock;
19 vendorHash = "sha256-FZFeO7UiVssxTf0JX6wdjrAE+jucYnfQJA1eOng39lQ=";
20
21 meta = {
22 changelog = "https://github.com/bobthecow/psysh/releases/tag/v${finalAttrs.version}";
23 description = "PsySH is a runtime developer console, interactive debugger and REPL for PHP.";
24 mainProgram = "psysh";
25 license = lib.licenses.mit;
26 homepage = "https://psysh.org/";
27 maintainers = lib.teams.php.members;
28 };
29})