diff options
author | Philip McGrath <philip@philipmcgrath.com> | 2022-05-18 14:11:12 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-05-22 01:07:55 +0200 |
commit | 4522741c1d5746d159b82f6203735b80b8f88ab8 (patch) | |
tree | 8b6bf3fcedb7957cf951921e2e66852b34ead9da | |
parent | 955638d8acf65f6296f6f5771508fd13f494a59a (diff) |
gnu: Add elm-random.
* gnu/packages/elm.scm (elm-random): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/elm.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/elm.scm b/gnu/packages/elm.scm index d17a3f2487..c2e4b65b77 100644 --- a/gnu/packages/elm.scm +++ b/gnu/packages/elm.scm @@ -560,3 +560,21 @@ compare front-end web frameworks.") Use this if you need to discover geometry information (width, position, etc.) of rendered elements.") (license license:asl2.0))) + +(define-public elm-random + (package + (name "elm-random") + (version "1.0.0") + (source + (elm-package-origin + "elm/random" + version + (base32 "0z0znkwfs35xiabk6pa9yqwsq03jssgd7jmsj1kk000mikfm7f39"))) + (build-system elm-build-system) + (propagated-inputs (list elm-time elm-core)) + (home-page "https://package.elm-lang.org/packages/elm/random/1.0.0") + (synopsis "Generate random numbers and values in Elm") + (description + "Need to generate random numbers? How about random game boards? Or +random positions in 3D space? This is the package for you!") + (license license:bsd-3))) |