From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 10/42] gnu: Add ghc-tasty-th. Date: Tue, 20 Sep 2016 21:11:20 -0400 Message-ID: <20160921011120.GC26508@jasmine> References: <20160918161022.26135-1-ng0@we.make.ritual.n0.is> <20160918161022.26135-10-ng0@we.make.ritual.n0.is> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="hYooF8G/hrfVAmum" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41907) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmW4Q-0007kQ-AF for guix-devel@gnu.org; Tue, 20 Sep 2016 21:11:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bmW4L-0004xL-Pl for guix-devel@gnu.org; Tue, 20 Sep 2016 21:11:29 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:60635) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmW4L-0004vu-Ik for guix-devel@gnu.org; Tue, 20 Sep 2016 21:11:25 -0400 Content-Disposition: inline In-Reply-To: <20160918161022.26135-10-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: ng0 Cc: guix-devel@gnu.org --hYooF8G/hrfVAmum Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Sep 18, 2016 at 04:09:50PM +0000, ng0 wrote: > * gnu/packages/haskell.scm (ghc-tasty-th): New variable. --hYooF8G/hrfVAmum Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="0003-ghc-tasty-th-synopsis-description-fix.patch" >From 9a0bf28ed9ba1189c455273613bfe98c6e6f0be1 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Tue, 20 Sep 2016 20:48:25 -0400 Subject: [PATCH 3/8] ghc-tasty-th synopsis description fix --- gnu/packages/haskell.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index eb103d1..cc320c1 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -6661,9 +6661,12 @@ this problem.") (inputs `(("ghc-tasty" ,ghc-tasty))) (home-page "http://github.com/bennofs/tasty-th") - (synopsis "Automatic tasty test case discovery using TH") + (synopsis "Automatically generate tasty TestTrees") (description - "Generate tasty TestTrees automatically with TemplateHaskell.") + "Tasty-th automatically generates tasty TestTrees from functions of the +current module, using TemplateHaskell. This is a fork the original +test-framework-th package, modified to work with tasty instead of +test-framework.") (license license:bsd-3))) (define-public ghc-sandi -- 2.10.0 --hYooF8G/hrfVAmum--