mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 11:25:22 -05:00
gnu: Add rust-nipper-0.1.
* gnu/packages/crates-io.scm (rust-nipper-0.1): New variable.
This commit is contained in:
parent
a91ac228a3
commit
28e8df3a03
1 changed files with 28 additions and 0 deletions
|
@ -21579,6 +21579,34 @@ (define-public rust-new-debug-unreachable-1
|
|||
release (fork of debug_unreachable)")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-nipper-0.1
|
||||
(package
|
||||
(name "rust-nipper")
|
||||
(version "0.1.8")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "nipper" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0l003qvzivrqq2lj2cdn4q5x0fg6xczld13m41x492x0g91hwvap"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-cssparser" ,rust-cssparser-0.27)
|
||||
("rust-html5ever" ,rust-html5ever-0.25)
|
||||
("rust-markup5ever" ,rust-markup5ever-0.10)
|
||||
("rust-selectors" ,rust-selectors-0.22)
|
||||
("rust-tendril" ,rust-tendril-0.4))))
|
||||
(home-page "https://github.com/importcjj/nipper")
|
||||
(synopsis "HTML manipulation with CSS selectors")
|
||||
(description
|
||||
"Nipper is based on HTML crate html5ever and the CSS selector crate
|
||||
selectors. You can use the jQuery-like syntax to query and manipulate an HTML
|
||||
document quickly.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-nix-0.19
|
||||
(package
|
||||
(name "rust-nix")
|
||||
|
|
Loading…
Reference in a new issue