guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#55030] [PATCH 07/30] gnu: Add elm-html.


From: Philip McGrath
Subject: [bug#55030] [PATCH 07/30] gnu: Add elm-html.
Date: Tue, 19 Apr 2022 19:31:51 -0400

* gnu/packages/elm.scm (elm-html): New variable.
---
 gnu/packages/elm.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/elm.scm b/gnu/packages/elm.scm
index af12804301..4ab7063adc 100644
--- a/gnu/packages/elm.scm
+++ b/gnu/packages/elm.scm
@@ -176,3 +176,23 @@ (define-public elm-virtual-dom
 higher-level libraries directly.")
     (license license:bsd-3)
     (properties '((upstream-name . "elm/virtual-dom")))))
+
+(define-public elm-html
+  (package
+    (name "elm-html")
+    (version "1.0.0")
+    (source
+     (elm-package-origin
+      "elm/html"
+      version
+      (base32 "15k1679ja57vvlpinpv06znmrxy09lbhzfkzdc89i01qa8c4gb4a")))
+    (build-system elm-build-system)
+    (propagated-inputs
+     (list elm-virtual-dom
+           elm-json
+           elm-core))
+    (home-page "https://package.elm-lang.org/packages/elm/html/1.0.0";)
+    (synopsis "Fast HTML, rendered with virtual DOM diffing")
+    (description "This package provides Elm's HTML rendering library.")
+    (license license:bsd-3)
+    (properties '((upstream-name . "elm/html")))))
-- 
2.32.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]