From mboxrd@z Thu Jan 1 00:00:00 1970 From: ericbavier@openmailbox.org Subject: Re: [PATCH] gnu: Add ghc-semigroups. Date: Thu, 22 Oct 2015 03:47:43 -0500 Message-ID: <1445503671-30014-15-git-send-email-ericbavier@openmailbox.org> References: <1445483479-19104-1-git-send-email-ericbavier@openmailbox.org> <1445503671-30014-1-git-send-email-ericbavier@openmailbox.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52304) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpG88-00040X-Mk for guix-devel@gnu.org; Thu, 22 Oct 2015 09:42:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZpG86-000852-PR for guix-devel@gnu.org; Thu, 22 Oct 2015 09:42:08 -0400 Received: from smtp4.openmailbox.org ([62.4.1.38]:52446) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpG86-00084S-GG for guix-devel@gnu.org; Thu, 22 Oct 2015 09:42:06 -0400 In-Reply-To: <1445503671-30014-1-git-send-email-ericbavier@openmailbox.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, Paul van der Walt From: Eric Bavier > * gnu/packages/haskell.scm (ghc-semigroups): New variable. > --- > gnu/packages/haskell.scm | 33 +++++++++++++++++++++++++++++++++ > 1 file changed, 33 insertions(+) > > diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm > index a26c7cf..a40cc3c 100644 > --- a/gnu/packages/haskell.scm > +++ b/gnu/packages/haskell.scm > @@ -2468,6 +2468,39 @@ unbounded @code{Integer} type.") > (description "This library provides the natural numbers for Haskell.") > (license bsd-3))) > > +(define-public ghc-semigroups > + (package [...] > + (inputs > + `(("ghc-text" ,ghc-text) > + ("ghc-hashable" ,ghc-hashable))) Do these not need to also be propagated? > + (synopsis "Anything that associates") This is quite general. How about: "Semigroup operations for Haskell" `~Eric