From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 20/42] gnu: Add ghc-directory. Date: Sun, 18 Sep 2016 16:10:00 +0000 Message-ID: <20160918161022.26135-20-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]:32833) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1blegT-0003Qf-5g for guix-devel@gnu.org; Sun, 18 Sep 2016 12:11:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1blegS-0007IT-59 for guix-devel@gnu.org; Sun, 18 Sep 2016 12:11:13 -0400 Received: from aibo.runbox.com ([91.220.196.211]:34133) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1blegR-0007I6-Uu for guix-devel@gnu.org; Sun, 18 Sep 2016 12:11:12 -0400 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1blegR-0000zU-Df for guix-devel@gnu.org; Sun, 18 Sep 2016 18:11:11 +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-directory): New variable. --- gnu/packages/haskell.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 5033071..308d8c3 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -6904,4 +6904,25 @@ Colours can be blended and composed. Various colour spaces are supported. A module of colour names (\"Data.Colour.Names\") is provided.") (license license:expat))) +(define-public ghc-directory + (package + (name "ghc-directory") + (version "1.2.7.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://hackage.haskell.org/package/directory/directory-" + version ".tar.gz")) + (sha256 + (base32 + "0h3hrqskadmbigaxbz2k5xxjjjlmfaq2zdn2g7jh1wv9k6yrxraa")))) + (build-system haskell-build-system) + (home-page "http://hackage.haskell.org/package/directory") + (synopsis "Platform-agnostic library for filesystem operations") + (description + "This library provides a basic set of operations for manipulating +files and directories in a portable way.") + (license license:bsd-3))) + ;;; haskell.scm ends here -- 2.10.0