[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
14/25: gnu: Add misspell.
From: |
guix-commits |
Subject: |
14/25: gnu: Add misspell. |
Date: |
Mon, 6 Feb 2023 18:06:19 -0500 (EST) |
cbaines pushed a commit to branch master
in repository guix.
commit 502f7ed25c86b1037ba51fe419a6e172d6fda94e
Author: Katherine Cox-Buday <cox.katherine.e@gmail.com>
AuthorDate: Tue Jan 17 18:44:59 2023 -0700
gnu: Add misspell.
* gnu/packages/golang.scm (misspell): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/golang.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 55d8794a5b..c791deac03 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4821,6 +4821,37 @@ Looks for an identical word on a list of words, if none
is found, look for a
similar word.")
(license license:expat))))
+(define-public misspell
+ (package
+ (name "misspell")
+ (version "0.3.4")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/client9/misspell")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/client9/misspell"
+ #:phases (modify-phases %standard-phases
+ (replace 'build
+ (lambda arguments
+ (apply (assoc-ref %standard-phases
+ 'build)
+ `(,@arguments #:import-path
+
"github.com/client9/misspell/cmd/misspell")))))))
+ (home-page "https://github.com/client9/misspell")
+ (synopsis "Correct commonly misspelled English words in source files")
+ (description
+ "misspell assists with correcting commonly misspelled English words in
+source files. A neutral variety of English is used by default, but a US or UK
+locale can be selected.")
+ (license license:expat)))
+
(define-public go-github-com-stevedonovan-luar
(let ((commit "22d247e5366095f491cd83edf779ee99a78f5ead")
(revision "0"))
- branch master updated (2a6cee99b3 -> f3ab5888a0), guix-commits, 2023/02/06
- 07/25: gnu: go-github-com-google-go-cmp-cmp: Update to 0.5.9., guix-commits, 2023/02/06
- 21/25: gnu: go-github-com-burntsushi-toml: Update to 1.2.1., guix-commits, 2023/02/06
- 04/25: gnu: Add go-github-com-jba-printsrc., guix-commits, 2023/02/06
- 05/25: gnu: Add go-github-com-google-safehtml., guix-commits, 2023/02/06
- 12/25: gnu: Add xurls., guix-commits, 2023/02/06
- 02/25: gnu: go-golang-org-x-mod: Update to 0.7.0., guix-commits, 2023/02/06
- 11/25: gnu: go-golang-org-x-tools: Update to 0.5.0., guix-commits, 2023/02/06
- 14/25: gnu: Add misspell.,
guix-commits <=
- 06/25: gnu: Add go-github-com-jba-templatecheck., guix-commits, 2023/02/06
- 13/25: gnu: Add go-mvdan-cc-xurls., guix-commits, 2023/02/06
- 03/25: gnu: Add go-golang-org-x-exp., guix-commits, 2023/02/06
- 10/25: gnu: gopkg-in-errgo-fmt-errors: Rename to go-gopkg-in-errgo-fmt-errors., guix-commits, 2023/02/06
- 08/25: gnu: go-github-com-pkg-diff: Update to 0.0.0-20210226163009-20ebb0f2a09e., guix-commits, 2023/02/06
- 15/25: gnu: Add go-github-com-client9-misspell., guix-commits, 2023/02/06
- 23/25: gnu: Add gofumpt., guix-commits, 2023/02/06
- 24/25: gnu: Add go-mvdan-cc-gofumpt., guix-commits, 2023/02/06
- 09/25: gnu: go-github-com-rogpeppe-go-internal: Update to 1.9.0., guix-commits, 2023/02/06
- 16/25: gnu: Add go-github-com-google-go-cmdtest., guix-commits, 2023/02/06