diff options
author | Philip McGrath <philip@philipmcgrath.com> | 2022-07-25 08:16:21 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-08-04 12:05:50 +0200 |
commit | 5e27bcf358bc57c735ca38e5a87f645529db26a2 (patch) | |
tree | 2dc592c5c6bb9d2f0a034f6a089577cb9c50b1ec /gnu | |
parent | cc5b8cb3c09fd56834bc9ddcb823ce0be9c84b87 (diff) | |
download | guix-5e27bcf358bc57c735ca38e5a87f645529db26a2.tar.gz guix-5e27bcf358bc57c735ca38e5a87f645529db26a2.zip |
gnu: Add ruby-link-header.
* gnu/packages/ruby.scm (ruby-link-header): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ruby.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 5111b9ae2b..bab120f8e0 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -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))) |