diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-08-14 14:04:14 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-08-14 14:04:14 +0300 |
| commit | 92b8e7fd5ae36e2532a15943605cebdedc9fb2e0 (patch) | |
| tree | 1b9567af39eb74eba54ed0ac4c94ffc486b46881 | |
| parent | Revert "Revert "wigust: Add net-snmp."" (diff) | |
| download | guix-wigust-92b8e7fd5ae36e2532a15943605cebdedc9fb2e0.tar.gz | |
wigust: Add emacs-psysh.
* wigust/packages/emacs.scm (emacs-psysh): New variable.
| -rw-r--r-- | wigust/packages/emacs.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/wigust/packages/emacs.scm b/wigust/packages/emacs.scm index f9a7b04..4b82e5f 100644 --- a/wigust/packages/emacs.scm +++ b/wigust/packages/emacs.scm @@ -1285,3 +1285,27 @@ network processes.") (description "This Emacs library lists the branches in a Git repository. Then you can operate on them with a dired-like interface.") (license license:gpl3+))) + +(define-public emacs-psysh + (package + (name "emacs-psysh") + (version "0.0.4") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/emacs-php/psysh.el/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0h019yarfgwyvfjsvif1l404a9a9j6jlzyfykyahf7j5850k4fhk")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-s" ,emacs-s) + ("emacs-f" ,emacs-f))) + (home-page "https://github.com/zonuexe/psysh.el") + (synopsis "PsySH, PHP interactive shell (REPL)") + (description + "This package provides a PHP interactive shell.") + (license license:gpl3+))) + |
