From 47d26cff905af41f97b10f79f3239c9294425f53 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Fri, 27 Nov 2015 13:30:54 +0100 Subject: [PATCH 07/30] gnu: Add ghc-mmap. * gnu/packages/haskell.scm (ghc-mmap): New variable. --- gnu/packages/haskell.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 8833932..5f9c951 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -5526,6 +5526,26 @@ directories. It includes code for pattern matching, finding files, modifying file contents, and more.") (license bsd-3))) +(define-public ghc-mmap + (package + (name "ghc-mmap") + (version "0.5.9") + (source (origin + (method url-fetch) + (uri (string-append "http://hackage.haskell.org/package/" + "mmap/mmap-" version ".tar.gz")) + (sha256 + (base32 + "1y5mk3yf4b8r6rzmlx1xqn4skaigrqnv08sqq0v7r3nbw42bpz2q")))) + (build-system haskell-build-system) + (home-page "http://hackage.haskell.org/package/mmap") + (synopsis "Memory mapped files for Haskell") + (description + "This library provides a wrapper to mmap, allowing files or devices to be +lazily loaded into memory as strict or lazy ByteStrings, ForeignPtrs or plain +Ptrs, using the virtual memory subsystem to do on-demand loading.") + (license bsd-3))) + (define-public idris (package (name "idris") -- 2.1.0