gnu: Add elm-html.

* gnu/packages/elm.scm (elm-html): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Philip McGrath 2022-05-18 14:10:58 -04:00 committed by Ludovic Courtès
parent 205457f814
commit 7ecc855254
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 19 additions and 0 deletions

View File

@ -179,3 +179,22 @@ core libraries for HTML and SVG. You should almost certainly use those
higher-level libraries directly.")
(properties '((upstream-name . "elm/virtual-dom")))
(license license:bsd-3)))
(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)))