me
/
guix
Archived
1
0
Fork 0

gnu: go-github-com-aymerick-douceur: Move to (gnu packages golang-web).

* gnu/packages/golang.scm (go-github-com-aymerick-douceur): Move from
here...
* gnu/packages/golang-web.scm: ...to here.

Change-Id: I2e94858736f88333f56d4eb4301acd35e6bb1a33
master
Sharlatan Hellseher 2023-11-29 22:34:42 +00:00 committed by Maxim Cournoyer
parent d17d7e6ca1
commit 213a54e8de
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
2 changed files with 26 additions and 25 deletions

View File

@ -35,6 +35,32 @@
;;;
;;; Code:
(define-public go-github-com-aymerick-douceur
(package
(name "go-github-com-aymerick-douceur")
(version "0.2.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/aymerick/douceur/")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1hfysznib0fqbp8vqxpk0xiggpp0ayk2bsddi36vbg6f8zq5f81n"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/aymerick/douceur"))
(native-inputs
(list go-github-com-andybalholm-cascadia
go-github-com-gorilla-css
go-github-com-puerkitobio-goquery
go-golang-org-x-net))
(home-page "https://github.com/aymerick/douceur/")
(synopsis "CSS parser and inliner")
(description "This package provides a CSS parser and inliner.")
(license license:expat)))
(define-public go-github-com-gorilla-css
(package
(name "go-github-com-gorilla-css")

View File

@ -9541,31 +9541,6 @@ to jQuery to the Go language.")
transforms one JSON document into another through a JMESPath expression.")
(license license:asl2.0)))
(define-public go-github-com-aymerick-douceur
(package
(name "go-github-com-aymerick-douceur")
(version "0.2.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/aymerick/douceur/")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1hfysznib0fqbp8vqxpk0xiggpp0ayk2bsddi36vbg6f8zq5f81n"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/aymerick/douceur"))
(native-inputs
(list go-github-com-puerkitobio-goquery
go-github-com-andybalholm-cascadia go-golang-org-x-net
go-github-com-gorilla-css))
(home-page "https://github.com/aymerick/douceur/")
(synopsis "CSS parser and inliner")
(description "This package provides a CSS parser and inliner.")
(license license:expat)))
(define-public go-github-com-chris-ramon-douceur
(package
(name "go-github-com-chris-ramon-douceur")