me
/
guix
Archived
1
0
Fork 0

gnu: Add ruby-link-header.

* gnu/packages/ruby.scm (ruby-link-header): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Philip McGrath 2022-07-25 08:16:21 -04:00 committed by Ludovic Courtès
parent cc5b8cb3c0
commit 5e27bcf358
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 21 additions and 0 deletions

View File

@ -13163,3 +13163,24 @@ original use was as an input filter for BibTeX-Ruby, but it can be used
independently to decode LaTeX. Many of the patterns used by this Ruby gem are
based on François Charette's equivalent Perl module @code{LaTeX::Decode}.")
(license license:gpl3+)))
(define-public ruby-link-header
(package
(name "ruby-link-header")
(version "0.0.8")
(source (origin
(method url-fetch)
(uri (rubygems-uri "link_header" version))
(sha256
(base32
"1yamrdq4rywmnpdhbygnkkl9fdy249fg5r851nrkkxr97gj5rihm"))))
(build-system ruby-build-system)
(home-page "https://github.com/asplake/link_header")
(synopsis "Parse and format HTTP @code{Link} headers")
(description
"This gem provides the classes @code{LinkHeader} and
@code{LinkHeader::Link}, which represent HTTP @code{Link} headers conforming
to RFC 5988. Objects can be constructed from and converted to text or a
JSON-friendly @code{Array} representation. They can also be used to generate
corresponding HTML @code{link} elements.")
(license license:expat)))