guix-patches
[Top][All Lists]
Advanced

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

[bug#55030] [PATCH 08/30] gnu: Add elm-svg.


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

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

diff --git a/gnu/packages/elm.scm b/gnu/packages/elm.scm
index 4ab7063adc..053a2e62f7 100644
--- a/gnu/packages/elm.scm
+++ b/gnu/packages/elm.scm
@@ -196,3 +196,26 @@ (define-public elm-html
     (description "This package provides Elm's HTML rendering library.")
     (license license:bsd-3)
     (properties '((upstream-name . "elm/html")))))
+
+(define-public elm-svg
+  (package
+    (name "elm-svg")
+    (version "1.0.1")
+    (source
+     (elm-package-origin
+      "elm/svg"
+      version
+      (base32 "1iqsc3p129j56lp1y3z3mfc6x1shvrmx3pkhri2777ylhyw90qvl")))
+    (build-system elm-build-system)
+    (propagated-inputs
+     (list elm-html
+           elm-virtual-dom
+           elm-json
+           elm-core))
+    (home-page "https://package.elm-lang.org/packages/elm/svg/1.0.1";)
+    (synopsis "Fast SVG, rendered with virtual DOM diffing")
+    (description
+     "This package provides Elm's @acronym{SVG, Scalable Vector Graphics}
+library.")
+    (license license:bsd-3)
+    (properties '((upstream-name . "elm/svg")))))
-- 
2.32.0






reply via email to

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