jgart pushed a commit to branch master
in repository guix.
commit 936928fe38946a7496273e636ca8888914d100a9
Author: gemmaro <[email protected]>
AuthorDate: Wed Aug 14 23:07:38 2024 +0900
gnu: Add ruby-gemtext.
* gnu/packages/ruby.scm (ruby-gemtext): New variable.
Change-Id: I21957517a1a3be6b0f5d61a7ba1c8420a884a641
Signed-off-by: jgart <[email protected]>
---
gnu/packages/ruby.scm | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 9547481caf..b47fea0391 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -32,7 +32,7 @@
;;; Copyright © 2022-2024 Remco van 't Veer <[email protected]>
;;; Copyright © 2022 Taiju HIGASHI <[email protected]>
;;; Copyright © 2023 Yovan Naumovski <[email protected]>
-;;; Copyright © 2023 gemmaro <[email protected]>
+;;; Copyright © 2023, 2024 gemmaro <[email protected]>
;;; Copyright © 2023, 2024 Janneke Nieuwenhuizen <[email protected]>
;;; Copyright © 2023, 2024 Zheng Junjie <[email protected]>
;;; Copyright © 2023, 2024 Hartmut Goebel <[email protected]>
@@ -7810,6 +7810,26 @@ documentation for Ruby code.")
(home-page "https://github.com/flori/tins")
(license license:expat)))
+(define-public ruby-gemtext
+ (package
+ (name "ruby-gemtext")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (rubygems-uri "gemtext" version))
+ (sha256
+ (base32 "1z559f5z0zvwnqgnny0zf4mppiary020ljxwpw3bdxi2hr9aj3gp"))))
+ (build-system ruby-build-system)
+ (synopsis "Gemtext parser for Ruby")
+ (description
+ "This package is a Ruby parser library for Gemtext (hypertext format
+which is intended to serve as the native response format of the Gemini
+file transfer protocol) and produces a document object of various
+nodes.")
+ (home-page "https://github.com/exastencil/gemtext")
+ (license license:expat)))
+
(define-public ruby-gem-hadar
(package
(name "ruby-gem-hadar")