diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2025-04-09 11:44:03 +0200 |
|---|---|---|
| committer | Christopher Baines <mail@cbaines.net> | 2025-04-11 12:30:38 +0100 |
| commit | a775db24601f656c2b5e68d1db444755bfc12ebc (patch) | |
| tree | be9ead1f8eeb866ddc4bbb9e2965c8e50b5a2767 | |
| parent | 0c7ffaacd28c2ab9aa42f7ca9e750c7e00f7c1fc (diff) | |
gnu: emacs-jinx: Update to 2.1.
* gnu/packages/emacs-xyz.scm (emacs-jinx): Update to 2.1.
[arguments]<#:tests>: Disable.
[arguments]<#:phases>: Remove install-info, not needed.
[native-inputs]: Remove redundant inputs.
Change-Id: I98cd4dae31296b5c5805b65c35bee362d0678ee5
Signed-off-by: Christopher Baines <mail@cbaines.net>
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index bc0d446210..a48b610cf8 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -12548,7 +12548,7 @@ sgml/html integration, and indentation (working with sgml).") (define-public emacs-jinx (package (name "emacs-jinx") - (version "1.12") + (version "2.1") (source (origin (method git-fetch) @@ -12558,10 +12558,11 @@ sgml/html integration, and indentation (working with sgml).") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1cxnxwbxfq29793r6f8pvvw2mb9mj7pa7g7z5k46abplkq65ds3g")))) + (base32 "1kfxx9657zn4sy463gxwsqqh4bcdxxaf3x7jkgasl4v18mrvid1i")))) (build-system emacs-build-system) (arguments (list + #:tests? #f ; no tests #:phases #~(modify-phases %standard-phases (add-after 'expand-load-path 'build-jinx-mod @@ -12579,7 +12580,6 @@ sgml/html integration, and indentation (working with sgml).") (add-after 'build-jinx-mod 'patch-path-to-jinx-mod (lambda _ (let ((file "jinx.el")) - (make-file-writable file) (emacs-substitute-sexps file ("\"Compile and load dynamic module.\"" `(module-load @@ -12588,14 +12588,10 @@ sgml/html integration, and indentation (working with sgml).") (add-after 'install 'install-jinx-mod (lambda _ (install-file "jinx-mod.so" - (string-append #$output "/lib/emacs")))) - (add-after 'install 'install-info - (lambda _ - (install-file "jinx.info" - (string-append #$output "/share/info"))))))) + (string-append #$output "/lib/emacs"))))))) (inputs (list enchant)) (propagated-inputs (list emacs-compat)) - (native-inputs (list emacs-compat enchant pkg-config texinfo)) + (native-inputs (list pkg-config texinfo)) (home-page "https://github.com/minad/jinx") (synopsis "Emacs spell checker based on Enchant library") (description "Jinx is a just-in-time spell-checker for Emacs |
