From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul van der Walt Subject: [PATCH 01/21] gnu: Add ghc-haddock-library. Date: Fri, 16 Oct 2015 15:11:45 +0200 Message-ID: <1445001125-20534-1-git-send-email-paul@denknerd.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34350) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zn4nw-0004LR-6w for guix-devel@gnu.org; Fri, 16 Oct 2015 09:12:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zn4nr-0002JH-7a for guix-devel@gnu.org; Fri, 16 Oct 2015 09:12:16 -0400 Received: from mx01.mykolab.com ([95.128.36.1]:8756 helo=mx-out03.mykolab.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zn4nr-0002IW-1J for guix-devel@gnu.org; Fri, 16 Oct 2015 09:12:11 -0400 Received: from mx03.mykolab.com (mx03.mykolab.com [10.20.7.101]) by mx-out03.mykolab.com (Postfix) with ESMTPS id 38D7C22AF0 for ; Fri, 16 Oct 2015 15:12:08 +0200 (CEST) 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 * gnu/packages/haskell.scm (ghc-haddock-library): New variable. --- gnu/packages/haskell.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 5af933d..95c1e31 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -389,6 +389,36 @@ package.") package.") (license bsd-3))) =20 +(define-public ghc-haddock-library + (package + (name "ghc-haddock-library") + (version "1.2.1") + (source + (origin + (method url-fetch) + (uri (string-append + "http://hackage.haskell.org/package/haddock-library/haddock= -library-" + version + ".tar.gz")) + (sha256 + (base32 + "0mhh2ppfhrvvi9485ipwbkv2fbgj35jvz3la02y3jlvg5ffs1c8g")))) + (build-system haskell-build-system) + (inputs + `(("ghc-base-compat" ,ghc-base-compat) + ("ghc-hspec" ,ghc-hspec) + ("ghc-quickcheck" ,ghc-quickcheck))) + (home-page "http://www.haskell.org/haddock/") + (synopsis + "Library exposing some functionality of Haddock") + (description + "Haddock is a documentation-generation tool for Haskell libraries. = These +modules expose some functionality of it without pulling in the GHC depen= dency. +Please note that the API is likely to change so specify upper bounds in = your +project if you can't release often. For interacting with Haddock itself= , see +the =E2=80=98haddock=E2=80=99 package.") + (license bsd-3))) + (define-public ghc-simple-reflect (package (name "ghc-simple-reflect") --=20 2.6.1