diff options
author | Rostislav Svoboda <rostislav.svoboda@gmail.com> | 2023-03-15 23:11:05 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-03-16 00:10:51 +0100 |
commit | 41849eae78e78830b30a0c9d627ece78e1f2649f (patch) | |
tree | f4ef3834bce42027bf77beb8cf63d35a4fe261a8 /gnu | |
parent | 28bf6720e7d2becd25371e6d069365e583e5988f (diff) | |
download | guix-41849eae78e78830b30a0c9d627ece78e1f2649f.tar.gz |
gnu: Add emacs-ac-php.
* gnu/packages/emacs-xyz.scm (emacs-ac-php): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index dba52d4918..f5b79ae87b 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -287,6 +287,42 @@ "AC Ispell is an Ispell and Aspell completion source for Auto Complete.") (license license:gpl3+)))) +(define-public emacs-ac-php + (package + (name "emacs-ac-php") + (version "2.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xcwen/ac-php") + (commit "dc563f4b1efeac8ae75f217532f4c99b4ba417de"))) + (file-name (git-file-name name version)) + (sha256 + (base32 "188hisppjbpia3bmrpsxvkfi8xkirisarnrpvkk3ya4k8lv4z13p")))) + (build-system emacs-build-system) + (arguments + (list + #:tests? #true + #:test-command #~(list "ert-runner"))) + (inputs + (list emacs-auto-complete + emacs-company + emacs-helm + emacs-dash + emacs-php-mode + emacs-s + emacs-f + emacs-popup + emacs-xcscope)) + (native-inputs + (list emacs-ert-runner)) + (home-page "https://github.com/xcwen/ac-php") + (synopsis "emacs auto-complete & company-mode for php") + (description + "This package provides Auto Complete and Company back-ends for PHP.") + (license license:gpl3+))) + (define-public emacs-ace-jump-helm-line (let ((commit "1483055255df3f8ae349f7520f05b1e43ea3ed37") (revision "0")) |