From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Bavier Subject: Re: [PATCH 16/43] gnu: ghc-ansi-terminal: New variable. Date: Mon, 19 Oct 2015 08:53:31 -0500 Message-ID: <20151019085331.4d67db09@openmailbox.org> References: <1444911697-15515-1-git-send-email-paul@denknerd.org> <1444911697-15515-16-git-send-email-paul@denknerd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33784) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZoFRx-0005op-2r for guix-devel@gnu.org; Mon, 19 Oct 2015 14:46:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZoFRs-00069i-T5 for guix-devel@gnu.org; Mon, 19 Oct 2015 14:46:25 -0400 Received: from smtp22.openmailbox.org ([62.4.1.56]:53744) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZoFRs-00069c-Mx for guix-devel@gnu.org; Mon, 19 Oct 2015 14:46:20 -0400 In-Reply-To: <1444911697-15515-16-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: Paul van der Walt Cc: guix-devel@gnu.org On Thu, 15 Oct 2015 14:21:10 +0200 Paul van der Walt wrote: > * gnu/package/haskell.scm (ghc-ansi-terminal): New variable. > --- > gnu/packages/haskell.scm | 23 +++++++++++++++++++++++ > 1 file changed, 23 insertions(+) > > diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm > index 6645a9d..4ec4971 100644 > --- a/gnu/packages/haskell.scm > +++ b/gnu/packages/haskell.scm > @@ -1212,6 +1212,29 @@ mutable and immutable), with a powerful loop optimisation framework.") > package into this package.") > (license bsd-3))) > > +(define-public ghc-ansi-terminal > + (package > + (name "ghc-ansi-terminal") > + (version "0.6.2.3") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "http://hackage.haskell.org/package/ansi-terminal/ansi-terminal-" > + version > + ".tar.gz")) > + (sha256 > + (base32 > + "0hpfw0k025y681m9ml1c712skrb1p4vh7z5x1f0ci9ww7ssjrh2d")))) > + (build-system haskell-build-system) > + (home-page "https://github.com/feuerbach/ansi-terminal") > + (synopsis "Simple ANSI terminal support, with Windows compatibility") We don't really care about Winblows compatibility, and "simple" is subjective. How about: " ANSI terminal support for Haskell" > + (description "ANSI terminal support for Haskell: allows cursor movement, > +screen clearing, color output showing or hiding the cursor, and changing the > +title. Compatible with Windows and those Unixes with ANSI terminals, but only > +GHC is supported as a compiler.") > + (license bsd-3))) Ditto here. I think we can leave off the last sentence entirely. `~Eric