diff options
author | Paul van der Walt <paul@denknerd.org> | 2015-10-15 21:19:03 +0200 |
---|---|---|
committer | Paul van der Walt <paul@denknerd.org> | 2015-10-23 09:10:52 +0200 |
commit | 9525e25fc1daa6c551ef6a979e8edd36c557931a (patch) | |
tree | 6628398fd321cd8d067d1f2c5d28d2d49b6f9a8c /gnu | |
parent | 27e7c8b6a6c3a49ac8f734232c9e7f4407937a46 (diff) | |
download | patches-9525e25fc1daa6c551ef6a979e8edd36c557931a.tar patches-9525e25fc1daa6c551ef6a979e8edd36c557931a.tar.gz |
gnu: Add ghc-easy-file.
* gnu/packages/haskell.scm (ghc-easy-file): New variable.
Diffstat (limited to 'gnu')
-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 7c07ff2dea..d3fc7693dc 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -1952,6 +1952,27 @@ a subset of @code{MonadBase} into which generic control operations such as system.") (license bsd-3))) +(define-public ghc-easy-file + (package + (name "ghc-easy-file") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (string-append + "http://hackage.haskell.org/package/easy-file/easy-file-" + version + ".tar.gz")) + (sha256 + (base32 + "0v75081bx4qzlqy29hh639nzlr7dncwza3qxbzm9njc4jarf31pz")))) + (build-system haskell-build-system) + (home-page + "http://github.com/kazu-yamamoto/easy-file") + (synopsis "File handling library for Haskell") + (description "This library provides file handling utilities for Haskell.") + (license bsd-3))) + (define-public ghc-async (package (name "ghc-async") |