[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/12: gnu: Add ghc-timeit.
From: |
guix-commits |
Subject: |
03/12: gnu: Add ghc-timeit. |
Date: |
Mon, 2 Sep 2019 23:11:43 -0400 (EDT) |
samplet pushed a commit to branch master
in repository guix.
commit 7bbfa3926e48e366126f6500e3d7ef1097c4ffcb
Author: John Soo <address@hidden>
Date: Sun Jul 7 17:32:28 2019 -0700
gnu: Add ghc-timeit.
* gnu/packages/haskell-xyz.scm (ghc-timeit): New variable.
Signed-off-by: Timothy Sample <address@hidden>
---
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 2dbafe6..b2cee24 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -10108,6 +10108,27 @@ function which generates instances.")
@code{TimeLocale}.")
(license license:bsd-3)))
+(define-public ghc-timeit
+ (package
+ (name "ghc-timeit")
+ (version "2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append
+ "https://hackage.haskell.org/package/timeit/timeit-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1sliqpvl501rlcj6s0lhmsf5ym24j4h881wzc1f1wdyvg3jz8kd1"))))
+ (build-system haskell-build-system)
+ (home-page "https://github.com/merijn/timeit")
+ (synopsis "Time monadic computations with an IO base")
+ (description "This package provides a simple wrapper to show the
+used CPU time of monadic computation with an IO base.")
+ (license license:bsd-3)))
+
(define-public ghc-tldr
(package
(name "ghc-tldr")
- branch master updated (68668e9 -> 6ec2450), guix-commits, 2019/09/02
- 01/12: gnu: Add ghc-unsafe., guix-commits, 2019/09/02
- 02/12: gnu: Add ghc-non-negative., guix-commits, 2019/09/02
- 03/12: gnu: Add ghc-timeit.,
guix-commits <=
- 09/12: gnu: Add ghc-process-extras., guix-commits, 2019/09/02
- 04/12: gnu: Add ghc-storablevector., guix-commits, 2019/09/02
- 05/12: gnu: Add ghc-fmlist., guix-commits, 2019/09/02
- 06/12: gnu: Add ghc-storable-record., guix-commits, 2019/09/02
- 07/12: gnu: Add ghc-listlike., guix-commits, 2019/09/02
- 08/12: gnu: Add ghc-storable-tuple., guix-commits, 2019/09/02
- 11/12: gnu: Add ghc-js-flot., guix-commits, 2019/09/02
- 12/12: gnu: Add hoogle., guix-commits, 2019/09/02
- 10/12: gnu: Add ghc-js-jquery., guix-commits, 2019/09/02