From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 35/43] gnu: Add ghc-chell. Date: Sun, 4 Sep 2016 16:17:34 +0000 Message-ID: <20160904161742.27197-35-ng0@we.make.ritual.n0.is> References: <20160904161742.27197-1-ng0@we.make.ritual.n0.is> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54500) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bga7a-0005iX-JF for guix-devel@gnu.org; Sun, 04 Sep 2016 12:18:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bga7Z-00067a-C0 for guix-devel@gnu.org; Sun, 04 Sep 2016 12:18:14 -0400 Received: from mithlond.libertad.in-berlin.de ([2001:67c:1400:2490::1]:56003 helo=beleriand.n0.is) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bga7Z-0005re-2U for guix-devel@gnu.org; Sun, 04 Sep 2016 12:18:13 -0400 In-Reply-To: <20160904161742.27197-1-ng0@we.make.ritual.n0.is> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/haskell.scm (ghc-chell): New variables. --- gnu/packages/haskell.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index aa46e20..96c2f70 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -7289,4 +7289,33 @@ spirit to POSIX shells. Shelly is originally forked from the Shellish package. easily work with command-line options.") (license license:expat))) +(define-public ghc-chell + (package + (name "ghc-chell") + (version "0.4.0.1") + (source + (origin + (method url-fetch) + (uri (string-append + "https://hackage.haskell.org/package/chell/chell-" + version ".tar.gz")) + (sha256 + (base32 + "0lb95abzxl4a87nfqxsxpb3a39pd52cci43hcvj8615hyhqvs2jz")))) + (build-system haskell-build-system) + (inputs + `(("ghc-options-bootstrap" ,ghc-options-bootstrap) + ("ghc-patience" ,ghc-patience) + ("ghc-random" ,ghc-random) + ("ghc-text" ,ghc-text) + ("ghc-ansi-terminal" ,ghc-ansi-terminal))) + (home-page "https://john-millikin.com/software/chell/") + (synopsis "Simple and intuitive library for automated testing") + (description + "Chell is a simple and intuitive library for automated testing. +It natively supports assertion-based testing, and can use companion +libraries such as @code{chell-quickcheck} to support more complex +testing strategies.") + (license license:expat))) + ;;; haskell.scm ends here -- 2.9.3