[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
60/154: gnu: Add ghc-doctest.
From: |
Paul |
Subject: |
60/154: gnu: Add ghc-doctest. |
Date: |
Thu, 22 Oct 2015 17:23:28 +0000 |
toothbrush pushed a commit to branch wip-haskell-platform-7.10.2-a
in repository guix.
commit c5d9e8950806f42afc591e878c0cdf01177f30c9
Author: Paul van der Walt <address@hidden>
Date: Thu Oct 15 14:03:37 2015 +0200
gnu: Add ghc-doctest.
* gnu/packages/haskell.scm (ghc-doctest): New variable.
---
gnu/packages/haskell.scm | 35 +++++++++++++++++++++++++++++++++++
1 files changed, 35 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index c43bbdc..d7e07ef 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -2174,4 +2174,39 @@ command line options in Haskell.")
available in later versions of base to a wider (older) range of compilers.")
(license bsd-3)))
+(define-public ghc-doctest
+ (package
+ (name "ghc-doctest")
+ (version "0.10.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://hackage.haskell.org/package/doctest/doctest-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1jbyhzbi2hfrfg7vbkpj6vriaap8cn99nnmzwcfscwaijz09jyrm"))))
+ (build-system haskell-build-system)
+ (arguments `(#:tests? #f)) ; FIXME: missing test framework
+ (propagated-inputs
+ `(("ghc-syb" ,ghc-syb)
+ ("ghc-paths" ,ghc-paths)))
+ (inputs
+ `(("ghc-base-compat" ,ghc-base-compat)
+ ("ghc-hunit" ,ghc-hunit)
+ ("ghc-hspec" ,ghc-hspec)
+ ("ghc-quickcheck" ,ghc-quickcheck)
+ ("ghc-stringbuilder" ,ghc-stringbuilder)
+ ("ghc-silently" ,ghc-silently)
+ ("ghc-setenv" ,ghc-setenv)))
+ (home-page
+ "https://github.com/sol/doctest#readme")
+ (synopsis "Test interactive Haskell examples")
+ (description "The doctest program checks examples in source code comments.
+It is modeled after doctest for Python, see
address@hidden://docs.python.org/library/doctest.html, the Doctest website}.")
+ (license expat)))
+
;;; haskell.scm ends here
- 53/154: gnu: Add ghc-monad-control., (continued)
- 53/154: gnu: Add ghc-monad-control., Paul, 2015/10/22
- 54/154: gnu: Add ghc-byteorder., Paul, 2015/10/22
- 56/154: gnu: Add ghc-base-compat., Paul, 2015/10/22
- 57/154: gnu: Add ghc-blaze-builder., Paul, 2015/10/22
- 55/154: gnu: Add ghc-easy-file., Paul, 2015/10/22
- 59/154: gnu: Add ghc-blaze-html., Paul, 2015/10/22
- 58/154: gnu: Add ghc-blaze-markup., Paul, 2015/10/22
- 61/154: gnu: Add ghc-auto-update., Paul, 2015/10/22
- 52/154: gnu: Add ghc-transformers-base., Paul, 2015/10/22
- 62/154: gnu: Add ghc-tagged., Paul, 2015/10/22
- 60/154: gnu: Add ghc-doctest.,
Paul <=
- 63/154: gnu: Add ghc-unbounded-delays., Paul, 2015/10/22
- 64/154: gnu: Add ghc-iproute., Paul, 2015/10/22
- 66/154: gnu: Add ghc-unix-compat., Paul, 2015/10/22
- 65/154: gnu: Add ghc-unix-time., Paul, 2015/10/22
- 68/154: gnu: Add ghc-http-types., Paul, 2015/10/22
- 67/154: gnu: Add ghc-quickcheck-instances., Paul, 2015/10/22
- 69/154: gnu: Add ghc-nats., Paul, 2015/10/22
- 70/154: gnu: Add ghc-semigroups., Paul, 2015/10/22
- 71/154: gnu: Add ghc-void., Paul, 2015/10/22
- 76/154: gnu: Add ghc-tagsoup., Paul, 2015/10/22