diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2023-11-29 22:34:44 +0000 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-01-03 16:35:14 -0500 |
commit | 5dbb2511e77390a65249a7efe9c4badf0ed95d66 (patch) | |
tree | 589b463772c96426d8ec035a4eeead959791d18d /gnu/packages/golang.scm | |
parent | 1bc5e65aadb9677313a9b30b0bb67208694710c7 (diff) | |
download | guix-5dbb2511e77390a65249a7efe9c4badf0ed95d66.tar.gz guix-5dbb2511e77390a65249a7efe9c4badf0ed95d66.zip |
gnu: go-github-com-puerkitobio-goquery: Move to (gnu packages golang-web).
* gnu/packages/golang.scm (go-github-com-puerkitobio-goquery): Move from
here...
* gnu/packages/golang-web.scm: ...to here.
Change-Id: Ic0415a8b280ebd12086a5976c9765c1dbbf50bd2
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 5b78ed8576..729d50f600 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -9466,30 +9466,6 @@ synchronizing plain text: converts it into syntax highlighted HTML, ANSI-coloured text, etc.") (license license:expat))) -(define-public go-github-com-puerkitobio-goquery - (package - (name "go-github-com-puerkitobio-goquery") - (version "1.7.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/PuerkitoBio/goquery") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0gh1d99l5xc9hvwa4j40pfq3y9vfyq52mnrz6bf1kw2r2zr2gbcc")))) - (build-system go-build-system) - (arguments - `(#:import-path "github.com/PuerkitoBio/goquery")) - (propagated-inputs - (list go-github-com-andybalholm-cascadia go-golang-org-x-net)) - (home-page "https://github.com/PuerkitoBio/goquery") - (synopsis "Features similar to jQuery to the Go language") - (description "@code{goquery} brings a syntax and a set of features similar -to jQuery to the Go language.") - (license license:bsd-3))) - (define-public go-github-com-jmespath-go-jmespath (package (name "go-github-com-jmespath-go-jmespath") |