gnu: Add elm-bytes.

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

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

View File

@ -292,3 +292,21 @@ Use it for HTTP and for @dfn{routing} in @acronym{SPAs, single-page apps}.")
"This package allows you to create Elm programs that run in browsers,
with access to browser history for @acronym{SPAs, single-page apps}.")
(license license:bsd-3)))
(define-public elm-bytes
(package
(name "elm-bytes")
(version "1.0.8")
(source
(elm-package-origin
"elm/bytes"
version
(base32 "0n411j2cyz9m241q6vszfzpq3fraradwal5m0gigp2505mdfpz3x")))
(build-system elm-build-system)
(propagated-inputs (list elm-core))
(home-page "https://package.elm-lang.org/packages/elm/bytes/1.0.8")
(synopsis "Work with sequences of bytes in Elm")
(description "This package provides an Elm library for working with
densely packed sequences of bytes, such as @code{ArrayBuffer}, typed arrays,
and @code{DataView}.")
(license license:bsd-3)))