diff options
author | Martin Marshall <law@martinmarshall.com> | 2022-11-21 22:57:04 -0500 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-11-22 18:48:42 +0100 |
commit | eb5e650e09dd096c066278918456f3e989f7b9d9 (patch) | |
tree | 7203bddfb6ac9d6c9050088bf031c3595fb83493 /gnu | |
parent | 452386617a5867ccc8b973c839033314ba074151 (diff) |
gnu: emacs-flymake-proselint: Remove references to Flycheck.
* gnu/packages/emacs-xyz.scm (emacs-flymake-proselint): Remove references to
flycheck.
[source]: Correct URL path-name.
[propagated-inputs]: Remove EMACS-FLYCHECK.
[home-page]: Correct URL path-name.
Package was installing EMACS-FLYCHECK but has no dependency on it. It uses
Emacs built-in, Flymake, instead.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 13088885f2..eae2777e19 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -6958,7 +6958,7 @@ files which are intended to be packages.") (source (origin (method git-fetch) (uri (git-reference - (url "https://git.sr.ht/~manuel-uberti/flycheck-proselint") + (url "https://git.sr.ht/~manuel-uberti/flymake-proselint") (commit commit))) (file-name (git-file-name name version)) (sha256 @@ -6975,11 +6975,9 @@ files which are intended to be packages.") (("\"proselint\"") (string-append "\"" (search-input-file inputs "/bin/proselint") "\"")))))))) - (propagated-inputs - (list emacs-flycheck)) (inputs (list python-proselint)) - (home-page "https://git.sr.ht/~manuel-uberti/flycheck-proselint") + (home-page "https://git.sr.ht/~manuel-uberti/flymake-proselint") (synopsis "Flymake backend for @code{proselint}") (description "This package adds support for @code{proselint} in Flymake.") (license license:gpl3+)))) |