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>
This commit is contained in:
Martin Marshall 2022-11-21 22:57:04 -05:00 committed by Nicolas Goaziou
parent 452386617a
commit eb5e650e09
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -6958,7 +6958,7 @@ (define-public emacs-flymake-proselint
(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 @@ (define-public emacs-flymake-proselint
(("\"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+))))