diff options
author | Philip McGrath <philip@philipmcgrath.com> | 2022-05-18 14:11:17 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-05-22 01:07:56 +0200 |
commit | 0fbf000f6835218a8ffcd79628f2f5a9711f947e (patch) | |
tree | 73f3317681017dbf12d090cc14a40949cfd3d7a8 | |
parent | gnu: Add elm-justinmimbs-date. (diff) | |
download | guix-0fbf000f6835218a8ffcd79628f2f5a9711f947e.tar.gz guix-0fbf000f6835218a8ffcd79628f2f5a9711f947e.tar.bz2 guix-0fbf000f6835218a8ffcd79628f2f5a9711f947e.tar.xz |
gnu: Add elm-justinmimbs-time-extra.
* gnu/packages/elm.scm (elm-justinmimbs-time-extra): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/elm.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/elm.scm b/gnu/packages/elm.scm index e92a2e222f..45f137dcdc 100644 --- a/gnu/packages/elm.scm +++ b/gnu/packages/elm.scm | |||
@@ -664,3 +664,25 @@ for working with POSIX times.") | |||
664 | "This Elm package provides a simple @code{Date} type for working with | 664 | "This Elm package provides a simple @code{Date} type for working with |
665 | dates without times or zones.") | 665 | dates without times or zones.") |
666 | (license license:bsd-3))) | 666 | (license license:bsd-3))) |
667 | |||
668 | (define-public elm-justinmimbs-time-extra | ||
669 | (package | ||
670 | (name "elm-justinmimbs-time-extra") | ||
671 | (version "1.1.1") | ||
672 | (source | ||
673 | (elm-package-origin | ||
674 | "justinmimbs/time-extra" | ||
675 | version | ||
676 | (base32 "1gmgvzlpzkysvm86d0md75ply10pz28bg699m4763frss0jvrngh"))) | ||
677 | (build-system elm-build-system) | ||
678 | (propagated-inputs | ||
679 | (list elm-justinmimbs-date | ||
680 | elm-time | ||
681 | elm-core)) | ||
682 | (home-page | ||
683 | "https://package.elm-lang.org/packages/justinmimbs/time-extra/1.1.1") | ||
684 | (synopsis "Extra functions for POSIX times in Elm") | ||
685 | (description | ||
686 | "This package provides extra functions for working with @code{Posix} | ||
687 | times from @code{elm/time}.") | ||
688 | (license license:bsd-3))) | ||