guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 052150e03bd321b1500f70f2f80ad7c35ebfa27e
Author: Julian Flake <[email protected]>
AuthorDate: Sun Sep 6 10:33:26 2026 +0200
gnu: emacs-flymake-languagetool: Update to 0.2.0-1.fcd9904.
* gnu/packages/emacs-xyz.scm (emacs-flymake-languagetool): Update to
0.2.0-1.fcd9904.
Signed-off-by: Liliana Marie Prikler <[email protected]>
Merges: guix/guix#11077
---
gnu/packages/emacs-xyz.scm | 47 ++++++++++++++++++++++++----------------------
1 file changed, 25 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 12c0f4f8dca..35ed9c134d3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4938,29 +4938,32 @@ compile}.")
(license license:gpl3+)))
(define-public emacs-flymake-languagetool
- (package
- (name "emacs-flymake-languagetool")
- (version "0.2.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url
- "https://github.com/emacs-languagetool/flymake-languagetool")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1sylnd4hybxnygcgxqw8p7mlp0r000n6f44y5fq3sv9518l5mflz"))))
- (build-system emacs-build-system)
- (arguments (list #:tests? #f)) ; no tests included
- (native-inputs (list emacs-s))
- (home-page "https://github.com/emacs-languagetool/flymake-languagetool")
- (synopsis "Flymake support for LanguageTool")
- (description
- "This package implements a flymake backend to interface with LanguageTool,
+ ;; Last release was in 2021.
+ (let ((commit "fcd9904535253ac4470c129549c9470c3bc80550")
+ (revision "1"))
+ (package
+ (name "emacs-flymake-languagetool")
+ (version (git-version "0.2.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url
+ "https://github.com/emacs-languagetool/flymake-languagetool")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1sylnd4hybxnygcgxqw8p7mlp0r000n6f44y5fq3sv9518l5mflz"))))
+ (build-system emacs-build-system)
+ (arguments (list #:tests? #f)) ; no tests included
+ (native-inputs (list emacs-s))
+ (home-page "https://github.com/emacs-languagetool/flymake-languagetool")
+ (synopsis "Flymake support for LanguageTool")
+ (description
+ "This package implements a flymake backend to interface with
LanguageTool,
a proofreading software for different languages.")
- (license license:gpl3+)))
+ (license license:gpl3+))))
(define-public emacs-flymake-perlcritic
(let ((commit "311743e97d2f705e76755697eea9ff451a39dd64")