guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 3e20d76f15ea6ef6c776cff82a4e75581f96034c
Author: Giacomo Leidi <[email protected]>
AuthorDate: Sat Jul 18 18:45:00 2026 +0200

    gnu: elixir-easyhtml: Update to 0.4.0.
    
    * gnu/packages/elixir-markup.scm (elixir-easyhtml): Update to 0.4.0.
    [propagated-inputs]: Replace elixir-floki with elixir-lazy-html.
    [synopsis]: Drop mention of floki.
    [description]: Drop mention of floki and align with upstream.
    
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/elixir-markup.scm | 20 ++++++--------------
 1 file changed, 6 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/elixir-markup.scm b/gnu/packages/elixir-markup.scm
index f9a1bec8b0..84d989f8e9 100644
--- a/gnu/packages/elixir-markup.scm
+++ b/gnu/packages/elixir-markup.scm
@@ -93,26 +93,18 @@ library (just call Earmark.as_html), but can also be used 
as a command-line tool
 (define-public elixir-easyhtml
   (package
     (name "elixir-easyhtml")
-    (version "0.3.2")
+    (version "0.4.0")
     (source
      (origin
        (method url-fetch)
        (uri (hexpm-uri "easyhtml" version))
        (sha256
-        (base32 "01jxhj3hpivf5c0x7d11c8xrx3d0ln6wsa78lc58g90j2vwkdadn"))))
+        (base32 "00wciw1sy9d8mjxaq3xfswg8fqcw1vidc7f7zasj784lqqv52wim"))))
     (build-system mix-build-system)
-    (propagated-inputs (list elixir-floki))
-    (synopsis "Tiny wrapper around Floki")
-    (description "@code{EasyHTML} makes working with HTML easy.  It is a tiny
-wrapper around Floki that adds conveniences:
-
-@itemize
-@item An @code{Inspect} implementation to pretty-print HTML snippets
-@item An @code{Access} implementation to search them
-@item An @code{Enumerable} implementation to traverse them
-item A @code{String.Chars} implementation to convert them to text
-@end itemize
-")
+    (propagated-inputs (list elixir-lazy-html))
+    (synopsis "EasyHTML makes working with HTML easy.")
+    (description "@code{EasyHTML} makes working with HTML easy.  It uses
+LazyHTML.")
     (home-page "https://hexdocs.pm/easyhtml/";)
     (license license:asl2.0)))
 

Reply via email to