From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul van der Walt Subject: [PATCH 13/21] gnu: Add ghc-chell-quickcheck. Date: Wed, 4 Nov 2015 21:01:01 +0100 Message-ID: <1446667269-4961-13-git-send-email-paul@denknerd.org> References: <87oaf95yix.fsf@denknerd.org> <1446667269-4961-1-git-send-email-paul@denknerd.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57061) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zu4G7-0004vv-O9 for guix-devel@gnu.org; Wed, 04 Nov 2015 15:02:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zu4G6-0001RE-UF for guix-devel@gnu.org; Wed, 04 Nov 2015 15:02:15 -0500 Received: from mx01.mykolab.com ([95.128.36.1]:8845 helo=mx-out01.mykolab.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zu4G6-0001Qy-OI for guix-devel@gnu.org; Wed, 04 Nov 2015 15:02:14 -0500 Received: from mx08.mykolab.com (unknown [10.20.7.48]) by mx-out01.mykolab.com (Postfix) with ESMTPS id 5AD2662135 for ; Wed, 4 Nov 2015 21:01:38 +0100 (CET) In-Reply-To: <1446667269-4961-1-git-send-email-paul@denknerd.org> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/haskell.scm (ghc-chell-quickcheck): New variable. --- gnu/packages/haskell.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 35e71cc..ad94ca4 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -1068,6 +1068,31 @@ as SDL surfaces, and supports the following formats: BMP, GIF, JPEG, LBM, PCX, PNG, PNM, TGA, TIFF, XCF, XPM, XV.") (license bsd-3))) +(define-public ghc-chell-quickcheck + (package + (name "ghc-chell-quickcheck") + (version "0.2.5") + (source + (origin + (method url-fetch) + (uri (string-append + "http://hackage.haskell.org/package/chell-quickcheck/" + "chell-quickcheck-" version ".tar.gz")) + (sha256 + (base32 + "02bkcnx5k6r5csdnnkvk4wfd0l36nxb87i1463ynw17n7ym9s4cs")))) + (build-system haskell-build-system) + (inputs + `(("ghc-chell" ,ghc-chell) + ("ghc-quickcheck" ,ghc-quickcheck) + ("ghc-random" ,ghc-random))) + (home-page "https://john-millikin.com/software/chell/") + (synopsis "QuickCheck support for the Chell testing library") + (description + "This library provides QuickCheck support to the @code{chell} testing +library for Haskell.") + (license expat))) + (define-public ghc-half (package (name "ghc-half") -- 2.6.2