gnu: go-github-com-client9-misspell: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-client9-misspell, misspell):
Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: I3e2a09d61f1d9a44249b2aac31a73d8b1b220928
This commit is contained in:
Sharlatan Hellseher 2024-12-27 21:53:49 +00:00
parent 8f8646c311
commit ef93945596
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 38 additions and 37 deletions

View file

@ -2403,6 +2403,33 @@ levels that works by wrapping the standard @code{log} library.")
dependencies and is intended to be used in long running processes.")
(license license:expat)))
(define-public go-github-com-client9-misspell
(package
(name "go-github-com-client9-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
(list
#:import-path "github.com/client9/misspell"
#:test-subdirs #~(list "ignore" ".")))
(propagated-inputs (list go-github-com-gobwas-glob))
(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-cloudwego-iasm
(package
(name "go-github-com-cloudwego-iasm")
@ -13146,6 +13173,17 @@ tool."))))
" This package provides an command line interface (CLI)
tool."))))
(define-public misspell
(package
(inherit go-github-com-client9-misspell)
(name "misspell")
(arguments
(list
#:install-source? #t
#:tests? #f
#:import-path "github.com/client9/misspell/cmd/misspell"
#:unpack-path "github.com/client9/misspell"))))
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar