diff options
author | Philip McGrath <philip@philipmcgrath.com> | 2022-05-18 14:11:11 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-05-22 01:07:55 +0200 |
commit | 955638d8acf65f6296f6f5771508fd13f494a59a (patch) | |
tree | 52b94a638308a963d7fb26907efc12685d4009f5 | |
parent | gnu: Add elm-todomvc. (diff) | |
download | guix-955638d8acf65f6296f6f5771508fd13f494a59a.tar.gz guix-955638d8acf65f6296f6f5771508fd13f494a59a.tar.bz2 guix-955638d8acf65f6296f6f5771508fd13f494a59a.tar.xz |
gnu: Add elm-debois-elm-dom.
* gnu/packages/elm.scm (elm-debois-elm-dom): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/elm.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/elm.scm b/gnu/packages/elm.scm index 9d3a58bcb5..d17a3f2487 100644 --- a/gnu/packages/elm.scm +++ b/gnu/packages/elm.scm | |||
@@ -540,3 +540,23 @@ on the @code{marked} project, which focuses on speed.") | |||
540 | @url{https://todomvc.com,TodoMVC}, a simple to-do--list application used to | 540 | @url{https://todomvc.com,TodoMVC}, a simple to-do--list application used to |
541 | compare front-end web frameworks.") | 541 | compare front-end web frameworks.") |
542 | (license license:bsd-3)))) | 542 | (license license:bsd-3)))) |
543 | |||
544 | (define-public elm-debois-elm-dom | ||
545 | (package | ||
546 | (name "elm-debois-elm-dom") | ||
547 | (version "1.3.0") | ||
548 | (source | ||
549 | (elm-package-origin | ||
550 | "debois/elm-dom" | ||
551 | version | ||
552 | (base32 "0w4z4w6ip118lk5g80w6mbbfxhfmivbmdkdm6wsmk63x85gscmqx"))) | ||
553 | (build-system elm-build-system) | ||
554 | (propagated-inputs | ||
555 | (list elm-json elm-html elm-core)) | ||
556 | (home-page "https://package.elm-lang.org/packages/debois/elm-dom/1.3.0") | ||
557 | (synopsis "DOM traversal for Elm event-handlers") | ||
558 | (description | ||
559 | "This package provides a library for reading information off the DOM. | ||
560 | Use this if you need to discover geometry information (width, position, etc.) | ||
561 | of rendered elements.") | ||
562 | (license license:asl2.0))) | ||