From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 35/42] gnu: Add ghc-chell-quickcheck-bootstrap. Date: Sun, 18 Sep 2016 16:10:15 +0000 Message-ID: <20160918161022.26135-35-ng0@we.make.ritual.n0.is> References: <20160918161022.26135-1-ng0@we.make.ritual.n0.is> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33124) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1blegg-0003fh-Ka for guix-devel@gnu.org; Sun, 18 Sep 2016 12:11:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1blegf-0007Vm-HN for guix-devel@gnu.org; Sun, 18 Sep 2016 12:11:26 -0400 Received: from aibo.runbox.com ([91.220.196.211]:34163) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1blegf-0007V4-Al for guix-devel@gnu.org; Sun, 18 Sep 2016 12:11:25 -0400 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1blege-0001A2-R0 for guix-devel@gnu.org; Sun, 18 Sep 2016 18:11:24 +0200 In-Reply-To: <20160918161022.26135-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-quickcheck-bootstrap): 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 1ddd807..a8ace82 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -7298,4 +7298,29 @@ libraries such as @code{chell-quickcheck} to support more complex testing strategies.") (license license:expat))) +(define ghc-chell-quickcheck-bootstrap + (package + (name "ghc-chell-quickcheck-bootstrap") + (version "0.2.5") + (source + (origin + (method url-fetch) + (uri (string-append + "https://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-random" ,ghc-random) + ("ghc-quickcheck" ,ghc-quickcheck))) + (arguments + `(#:tests? #f)) + (home-page "https://john-millikin.com/software/chell/") + (synopsis "QuickCheck support for the Chell testing library") + (description "More complex tests for @code{chell}.") + (license license:expat))) + ;;; haskell.scm ends here -- 2.10.0