gnu: Add elm-time.

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

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

View File

@ -220,3 +220,22 @@ higher-level libraries directly.")
"This package provides Elm's @acronym{SVG, Scalable Vector Graphics}
library.")
(license license:bsd-3)))
(define-public elm-time
(package
(name "elm-time")
(version "1.0.0")
(source
(elm-package-origin
"elm/time"
version
(base32 "0wqa2vhl1zf8z0j2yd3yjwfhr0dydfns43bbzll3k4rhnjadxr1l")))
(build-system elm-build-system)
(propagated-inputs (list elm-core))
(home-page "https://package.elm-lang.org/packages/elm/time/1.0.0")
(synopsis
"POSIX time and time zones in Elm")
(description
"This package provides an Elm library for working with POSIX times, time
zones, formatting, and the clock.")
(license license:bsd-3)))