me
/
guix
Archived
1
0
Fork 0

gnu: Add go-github-com-andybalholm-cascadia.

* gnu/packages/golang.scm (go-github-com-andybalholm-cascadia): New variable.
master
Oleg Pykhalov 2020-08-09 00:06:40 +03:00
parent f12cca097b
commit 1a1463c20e
No known key found for this signature in database
GPG Key ID: 167F8EA5001AFA9C
1 changed files with 24 additions and 0 deletions

View File

@ -4663,3 +4663,27 @@ synchronizing plain text:
(description "Chroma takes source code and other structured text and
converts it into syntax highlighted HTML, ANSI-coloured text, etc.")
(license license:expat)))
(define-public go-github-com-andybalholm-cascadia
(package
(name "go-github-com-andybalholm-cascadia")
(version "1.0.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/andybalholm/cascadia")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"09j8cavbhqqdxjqrkwbc40g8p0i49zf3184rpjm5p2rjbprcghcc"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/andybalholm/cascadia"))
(native-inputs
`(("go-golang-org-x-net" ,go-golang-org-x-net)))
(home-page "https://github.com/andybalholm/cascadia/")
(synopsis "CSS selectors for HTML")
(description "The Cascadia package implements CSS selectors for use with
the parse trees produced by the html package.")
(license license:bsd-2)))