From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49467) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fHEkp-0002PA-Mo for guix-patches@gnu.org; Fri, 11 May 2018 16:35:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fHEko-000584-NM for guix-patches@gnu.org; Fri, 11 May 2018 16:35:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:50850) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fHEko-000580-Jw for guix-patches@gnu.org; Fri, 11 May 2018 16:35:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fHEko-0006m4-Ch for guix-patches@gnu.org; Fri, 11 May 2018 16:35:02 -0400 Subject: [bug#31419] [PATCH 2/6] gnu: Add ghc-array. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49376) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fHEkM-0002M7-Kw for guix-patches@gnu.org; Fri, 11 May 2018 16:34:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fHEkI-00051E-IQ for guix-patches@gnu.org; Fri, 11 May 2018 16:34:34 -0400 Received: from mx1.riseup.net ([198.252.153.129]:43325) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fHEkI-000510-Ct for guix-patches@gnu.org; Fri, 11 May 2018 16:34:30 -0400 From: Tonton Date: Fri, 11 May 2018 22:34:04 +0200 Message-Id: <20180511203408.29491-1-tonton@riseup.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31418@debbugs.gnu.org, 31419@debbugs.gnu.org Cc: Tonton * gnu/packages/haskell.scm (ghc-array): New variable. --- gnu/packages/haskell.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 9b26ff56f..67faeb852 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -13,6 +13,7 @@ ;;; Copyright =C2=A9 2017, 2018 Alex Vong ;;; Copyright =C2=A9 2017 rsiddharth ;;; Copyright =C2=A9 2017, 2018 Tobias Geerinckx-Rice +;;; Copyright =C2=A9 2018 Tonton ;;; ;;; This file is part of GNU Guix. ;;; @@ -9466,4 +9467,27 @@ system dependencies.") address string against RFC 5322.") (license license:bsd-3))) =20 +(define-public ghc-array + (package + (name "ghc-array") + (version "0.5.2.0") + (source + (origin + (method url-fetch) + (uri + (string-append "https://hackage.haskell.org/package/array-0.5.2.0/= array-" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "12v83s2imxb3p2crnlzrpjh0nk6lpysw9bdk9yahs6f37csa5jaj")))) + (build-system haskell-build-system) + (synopsis "Haskell Data.Array module") + (description "In addition to providing the Data.Array module as +specified in the Haskell 2010 Language Report, this package also defines +the classes IArray of immutable arrays and MArray of arrays mutable +within appropriate monads, as well as some instances of these classes.") + (home-page "https://hackage.haskell.org/package/array") + (license license:bsd-3))) + ;;; haskell.scm ends here --=20 2.17.0