From mboxrd@z Thu Jan 1 00:00:00 1970 From: ericbavier@openmailbox.org Subject: Re: [PATCH] gnu: Add ghc-haddock-api. Date: Thu, 22 Oct 2015 03:47:30 -0500 Message-ID: <1445503671-30014-2-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> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51983) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpG81-0003mI-ET for guix-devel@gnu.org; Thu, 22 Oct 2015 09:42:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZpG7s-0007uK-Bt for guix-devel@gnu.org; Thu, 22 Oct 2015 09:41:58 -0400 Received: from smtp1.openmailbox.org ([62.4.1.35]:43524) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpG7s-0007u3-65 for guix-devel@gnu.org; Thu, 22 Oct 2015 09:41:52 -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-haddock-api): New variable. > --- > gnu/packages/haskell.scm | 25 +++++++++++++++++++++++++ > 1 file changed, 25 insertions(+) >=20 > diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm > index 4dacc92..be14e82 100644 > --- a/gnu/packages/haskell.scm > +++ b/gnu/packages/haskell.scm > @@ -417,6 +417,31 @@ project if you can't release often. For interacti= ng with Haddock itself, see > the =E2=80=98haddock=E2=80=99 package.") > (license bsd-3))) > =20 > +(define-public ghc-haddock-api > + (package > + (name "ghc-haddock-api") > + (version "2.16.1") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "http://hackage.haskell.org/package/haddock-api/haddock-a= pi-" > + version > + ".tar.gz")) > + (sha256 > + (base32 > + "1spd5axg1pdjv4dkdb5gcwjsc8gg37qi4mr2k2db6ayywdkis1p2")))) > + (build-system haskell-build-system) > + (propagated-inputs > + `(("ghc-paths" ,ghc-paths) > + ("ghc-haddock-library" ,ghc-haddock-library))) > + (home-page "http://www.haskell.org/haddock/") > + (synopsis > + "Documentation-generation tool for Haskell libraries") > + (description > + "Haddock is a documentation-generation tool for Haskell libraries= .") Could you adjust the synopsis and description to differentiate this packa= ge from ghc-haddock? Thanks, `~Eric > + (license bsd-3))) > + > (define-public ghc-simple-reflect > (package > (name "ghc-simple-reflect")