From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul van der Walt Subject: [PATCH 43/43] gnu: ghc-http-types: New variable. Date: Thu, 15 Oct 2015 15:06:24 +0200 Message-ID: <1444914384-24847-19-git-send-email-paul@denknerd.org> References: <1444914384-24847-1-git-send-email-paul@denknerd.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35312) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmiFN-0003yK-1N for guix-devel@gnu.org; Thu, 15 Oct 2015 09:07:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZmiFJ-0008GL-1n for guix-devel@gnu.org; Thu, 15 Oct 2015 09:07:04 -0400 Received: from mx01.mykolab.com ([95.128.36.1]:48953 helo=mx-out03.mykolab.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmiFI-0008Fs-RS for guix-devel@gnu.org; Thu, 15 Oct 2015 09:07:00 -0400 Received: from mx08.mykolab.com (unknown [10.20.7.48]) by mx-out03.mykolab.com (Postfix) with ESMTPS id E593A2360C for ; Thu, 15 Oct 2015 15:06:50 +0200 (CEST) In-Reply-To: <1444914384-24847-1-git-send-email-paul@denknerd.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 * gnu/packages/haskell.scm (ghc-http-types): New variable. --- gnu/packages/haskell.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 8a58e3f..49af827 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -1045,6 +1045,41 @@ package. This package re-exports the unix package when available. When it isn't available, portable implementations are used.") (license bsd-3))) +(define-public ghc-http-types + (package + (name "ghc-http-types") + (version "0.9") + (source + (origin + (method url-fetch) + (uri (string-append + "http://hackage.haskell.org/package/http-types/http-types-" + version + ".tar.gz")) + (sha256 + (base32 + "0ny15jgm5skhs2yx6snr13lrnw19hwjgfygrpsmhib8wqa8cz8cc")))) + (build-system haskell-build-system) + (arguments `(#:tests? #f)) + (propagated-inputs + `(("ghc-case-insensitive" ,ghc-case-insensitive) + ("ghc-blaze-builder" ,ghc-blaze-builder) + )) + (inputs + `(("ghc-text" ,ghc-text) + ("ghc-quickcheck" ,ghc-quickcheck) + ("ghc-quickcheck-instances" + ,ghc-quickcheck-instances) + ("ghc-hspec" ,ghc-hspec) + ("ghc-doctest" ,ghc-doctest))) + (home-page + "https://github.com/aristidb/http-types") + (synopsis + "Generic HTTP types for Haskell.") + (description + "Generic HTTP types for Haskell (for both client and server code).") + (license bsd-3))) + (define-public ghc-iproute (package (name "ghc-iproute") -- 2.6.1