~ruther/guix-local

dbe39aa5651ab7cde22c420bd27501bef4115e9e — Raven Hallsby 5 months ago 87b7252
gnu: Add go-github-com-baulk-chardet.

* gnu/packages/golang-xyz.scm (go-github-com-baulk-chardet): New variable.

Change-Id: Ic9229d6c29702eaa8c34d8e4dec7b5e977094f26
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 25 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +25 -0
@@ 2423,6 2423,31 @@ supports generating diffs in the
Unified Format}.")
    (license license:expat)))

(define-public go-github-com-baulk-chardet
  (package
    (name "go-github-com-baulk-chardet")
    (version "0.1.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/baulk/chardet")
              (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0sjs572wri69fj97byhf1xmzw7fdrlpasp0k2mc96h5804fwm08l"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "github.com/baulk/chardet"
      #:test-flags
      #~(list "-vet=off"))) ;Go@1.24 forces vet, but tests are not ready yet.
    (home-page "https://github.com/baulk/chardet")
    (synopsis "Character set detection for Go")
    (description
     "The chardet package ports character set detection from ICU to Go.")
    (license license:expat)))

(define-public go-github-com-beorn7-perks
  (package
    (name "go-github-com-beorn7-perks")