diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-11-27 13:30:54 +0100 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-12-10 14:34:51 +0100 |
commit | 348519e1bf5b6b9beba3201b0afcb58ef65c4a9f (patch) | |
tree | 012dcf7a37001adf363aabc1bd979fc56fbd6923 /gnu/packages/haskell.scm | |
parent | fcacbec34ecd65d9a770e502295e406193abb526 (diff) | |
download | gnu-guix-348519e1bf5b6b9beba3201b0afcb58ef65c4a9f.tar gnu-guix-348519e1bf5b6b9beba3201b0afcb58ef65c4a9f.tar.gz |
gnu: Add ghc-mmap.
* gnu/packages/haskell.scm (ghc-mmap): New variable.
Diffstat (limited to 'gnu/packages/haskell.scm')
-rw-r--r-- | gnu/packages/haskell.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 9b99addcb6..b6a45d2597 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -5526,6 +5526,27 @@ 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 @code{mmap}, allowing files or +devices to be lazily loaded into memory as strict or lazy @code{ByteStrings}, +@code{ForeignPtrs} or plain @code{Ptrs}, using the virtual memory subsystem to +do on-demand loading.") + (license bsd-3))) + (define-public idris (package (name "idris") |