From mboxrd@z Thu Jan 1 00:00:00 1970 From: ericbavier@openmailbox.org Subject: Re: [PATCH] gnu: Add ghc-reflection. Date: Thu, 22 Oct 2015 03:47:37 -0500 Message-ID: <1445503671-30014-9-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]:52171) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpG85-0003wH-P3 for guix-devel@gnu.org; Thu, 22 Oct 2015 09:42:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZpG81-0007z2-HK for guix-devel@gnu.org; Thu, 22 Oct 2015 09:42:05 -0400 Received: from smtp1.openmailbox.org ([62.4.1.35]:55451) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpG81-0007x5-BI for guix-devel@gnu.org; Thu, 22 Oct 2015 09:42:01 -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-reflection): New variable. > --- > gnu/packages/haskell.scm | 25 +++++++++++++++++++++++++ > 1 file changed, 25 insertions(+) > > diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm > index ee30454..86fc76f 100644 > --- a/gnu/packages/haskell.scm > +++ b/gnu/packages/haskell.scm > @@ -364,6 +364,31 @@ package.") > package.") > (license bsd-3))) > > +(define-public ghc-reflection > + (package > + (name "ghc-reflection") > + (version "2.1") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "http://hackage.haskell.org/package/reflection/reflection-" > + version > + ".tar.gz")) > + (sha256 > + (base32 > + "10w3m6v3g6am203wbrikdbp57x9vw6b4jsh7bxdzsss4nmpm81zg")))) > + (build-system haskell-build-system) > + (inputs `(("ghc-tagged" ,ghc-tagged))) > + (home-page "http://github.com/ekmett/reflection") > + (synopsis "Reifies arbitrary terms into types that can be reflected back > +into terms") "Reifies" -> "Reify" > + (description "This package addresses the 'configuration problem' which is > +propogating configurations that are available at run-time, allowing multible "multible" -> "multiple" > +configurations to coexist without resorting to mutable global variables or > +@code{System.IO.Unsafe.unsafePerformIO}.") > + (license bsd-3))) > + > (define-public ghc-old-locale > (package > (name "ghc-old-locale") > -- > 2.5.0 >