diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-09-11 23:35:28 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-09-11 23:36:36 +0200 |
commit | 1cca04d7cff75fc1fe8913b23096109a17d43a97 (patch) | |
tree | 35d83b452f87b9c4b8558766f7d6196bd02cf6b3 | |
parent | 251bf55f507860d9775b520585c0fdd7ede7d534 (diff) | |
download | guix-1cca04d7cff75fc1fe8913b23096109a17d43a97.tar guix-1cca04d7cff75fc1fe8913b23096109a17d43a97.tar.gz |
gnu: emacs-php-mode: Update URL.
* gnu/packages/emacs-xyz.scm (emacs-php-mode)[source, home-page]: Update
URL and factorize it.
Co-authored-by: Piotr Kwiecinski <piokwiecinski@gmail.com>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 4a4aa85dbc..a380abc4ed 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -18304,11 +18304,12 @@ in Emacs.") (package (name "emacs-php-mode") (version "1.25.0") + (home-page "https://github.com/emacs-php/php-mode") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/ejmr/php-mode") + (url home-page) (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -18331,7 +18332,6 @@ in Emacs.") (lambda _ (chdir "lisp")))))) (propagated-inputs (list emacs-projectile)) - (home-page "https://github.com/ejmr/php-mode") (synopsis "Major mode for editing PHP code") (description "PHP mode is a major mode for editing PHP source code. It's an extension |