samplet pushed a commit to branch wip-haskell-updates
in repository guix.
commit 3483bbd0e83f8347ba43448030d23f3e00b616df
Author: Timothy Sample <[email protected]>
Date: Sun Nov 3 22:53:43 2019 -0500
gnu: Add ghc-time-manager.
* gnu/packages/haskell-xyz.scm (ghc-time-manager): New variable.
---
gnu/packages/haskell-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 0f170d0..360aaaf 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -10776,6 +10776,27 @@ features as possible.")
@code{TimeLocale}.")
(license license:bsd-3)))
+(define-public ghc-time-manager
+ (package
+ (name "ghc-time-manager")
+ (version "0.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://hackage.haskell.org/package/"
+ "time-manager/time-manager-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1nzwj0fxz370ks6vr1sylcidx33rnqq45y3q9yv9n4dj43nid9lh"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-auto-update" ,ghc-auto-update)))
+ (home-page "http://github.com/yesodweb/wai")
+ (synopsis "Scalable timer")
+ (description "This library contains scalable timer functions provided by a
+timer manager.")
+ (license license:expat)))
+
(define-public ghc-timeit
(package
(name "ghc-timeit")