From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 12/42] gnu: Add ghc-bytestring-handle. Date: Sun, 18 Sep 2016 16:09:52 +0000 Message-ID: <20160918161022.26135-12-ng0@we.make.ritual.n0.is> References: <20160918161022.26135-1-ng0@we.make.ritual.n0.is> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60967) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1blegO-0003LN-Tz for guix-devel@gnu.org; Sun, 18 Sep 2016 12:11:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1blegM-0007Ce-QF for guix-devel@gnu.org; Sun, 18 Sep 2016 12:11:07 -0400 Received: from aibo.runbox.com ([91.220.196.211]:34125) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1blegM-0007CF-JL for guix-devel@gnu.org; Sun, 18 Sep 2016 12:11:06 -0400 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1blegM-0000v4-1m for guix-devel@gnu.org; Sun, 18 Sep 2016 18:11:06 +0200 In-Reply-To: <20160918161022.26135-1-ng0@we.make.ritual.n0.is> 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" To: guix-devel@gnu.org * gnu/packages/haskell.scm (ghc-bytestring-handle): 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 6605391..340b1a6 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -6689,4 +6689,29 @@ this problem.") (description "Reasonably fast data encoding library.") (license license:bsd-3))) +(define-public ghc-bytestring-handle + (package + (name "ghc-bytestring-handle") + (version "0.1.0.4") + (source + (origin + (method url-fetch) + (uri (string-append + "https://hackage.haskell.org/package/bytestring-handle/bytestring-handle-" + version ".tar.gz")) + (sha256 + (base32 + "0q5yzx90ad9w7qvaix05bynxwlsbqjrgfc4hqb355ibf991wd0rh")))) + (build-system haskell-build-system) + (inputs + `(("ghc-quickcheck" ,ghc-quickcheck) + ("ghc-test-framework-quickcheck2" ,ghc-test-framework-quickcheck2) + ("ghc-hunit" ,ghc-hunit) + ("ghc-test-framework-hunit" ,ghc-test-framework-hunit) + ("ghc-test-framework" ,ghc-test-framework))) + (home-page "http://hub.darcs.net/ganesh/bytestring-handle") + (synopsis "ByteString-backed Handles") + (description "ByteString-backed Handles") ; There is no description + (license license:bsd-3))) + ;;; haskell.scm ends here -- 2.10.0