From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul van der Walt Subject: [PATCH 14/21] gnu: Add ghc-system-filepath. Date: Wed, 4 Nov 2015 21:01:02 +0100 Message-ID: <1446667269-4961-14-git-send-email-paul@denknerd.org> References: <87oaf95yix.fsf@denknerd.org> <1446667269-4961-1-git-send-email-paul@denknerd.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56957) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zu4G2-0004r5-3J for guix-devel@gnu.org; Wed, 04 Nov 2015 15:02:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zu4Fy-0001OJ-TQ for guix-devel@gnu.org; Wed, 04 Nov 2015 15:02:10 -0500 Received: from mx01.mykolab.com ([95.128.36.1]:8839 helo=mx-out01.mykolab.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zu4Fy-0001OE-9X for guix-devel@gnu.org; Wed, 04 Nov 2015 15:02:06 -0500 Received: from mx08.mykolab.com (unknown [10.20.7.48]) by mx-out01.mykolab.com (Postfix) with ESMTPS id 5ADE36219F for ; Wed, 4 Nov 2015 21:01:40 +0100 (CET) In-Reply-To: <1446667269-4961-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-system-filepath): New variable. --- gnu/packages/haskell.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index ad94ca4..fd782c1 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -1261,6 +1261,33 @@ utility library. It is basically a 1:1 mapping of GLU's C API, intended as a basis for a nicer interface.") (license bsd-3))) +(define-public ghc-system-filepath + (package + (name "ghc-system-filepath") + (version "0.4.13.4") + (source + (origin + (method url-fetch) + (uri (string-append + "http://hackage.haskell.org/package/system-filepath/system-filepath-" + version + ".tar.gz")) + (sha256 + (base32 + "1yy5zsmmimhg6iaw9fmpwrxvxrgi5s6bfyqfihdsnx4bjvn7sp9l")))) + (build-system haskell-build-system) + (inputs + `(("ghc-text" ,ghc-text) + ("ghc-chell" ,ghc-chell) + ("ghc-chell-quickcheck" ,ghc-chell-quickcheck) + ("ghc-quickcheck" ,ghc-quickcheck))) + (home-page "https://github.com/fpco/haskell-filesystem") + (synopsis "Byte-based file and directory path manipulation") + (description + "This library provides high-level functions for byte-based file and +directory path manipulation in Haskell.") + (license expat))) + (define-public ghc-opengl (package (name "ghc-opengl") -- 2.6.2