diff options
author | Cayetano Santos <csantosb@inventati.org> | 2025-04-08 10:02:08 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-04-08 17:08:54 +0200 |
commit | e557df4a678ee3dcf9349618fe10274e5d8bd866 (patch) | |
tree | 40cbb38090c7100b23552d22eeef2509beef8a60 | |
parent | 9c9e8f97b978f2a558f3dd0746be39bbfe40acb5 (diff) | |
download | guix-e557df4a678ee3dcf9349618fe10274e5d8bd866.tar.gz guix-e557df4a678ee3dcf9349618fe10274e5d8bd866.zip |
gnu: emacs-fj: Update to 0.5.
* gnu/packages/emacs-xyz.scm (emacs-fj): Update to 0.5.
Change-Id: I8baa058f342bb0faf6e3718b2cc038f32b7c8448
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 41 |
1 files changed, 20 insertions, 21 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 66beb69ec5..1550b9ada1 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -37196,27 +37196,26 @@ Lisp's (relatively new) EIEIO object oriented libraries.") (license license:gpl3+))) (define-public emacs-fj - (let ((commit "c2684eab1cdd745dbc5af6cd5abacd9822099662") - (revision "0")) - (package - (name "emacs-fj") - (version (git-version "0.3" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://codeberg.org/martianh/fj.el") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "05kx1h7r4g7x58k849m4h57a7lmcbhhm40qivn39mxfjx4ckn6n9")))) - (build-system emacs-build-system) - (propagated-inputs (list emacs-fedi emacs-magit emacs-tp)) - (home-page "https://codeberg.org/martianh/fj.el") - (synopsis "Client for Forgejo instances") - (description - "Fj contains basic functions for interacting with a Forgejo instance.") - (license license:gpl3+)))) + (package + (name "emacs-fj") + (version "0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://codeberg.org/martianh/fj.el") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15mm40n9jpc5f3avjq6h17bsqzk7f3f256kh7rm0iqjfh3vlvkbd")))) + (build-system emacs-build-system) + (arguments (list #:tests? #f)) ; no tests + (propagated-inputs (list emacs-fedi emacs-magit emacs-tp)) + (home-page "https://codeberg.org/martianh/fj.el") + (synopsis "Client for Forgejo instances") + (description + "Fj contains basic functions for interacting with a Forgejo instance.") + (license license:gpl3+))) (define-public emacs-ebdb-i18n-chn (package |