gnu: Add ghc-bytestring-lexing.

* gnu/packages/haskell.scm (ghc-bytestring-lexing): New variable.
master
Ricardo Wurmus 2018-10-02 18:38:06 +02:00 committed by Ricardo Wurmus
parent d9ee3e375c
commit d453b89944
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 21 additions and 0 deletions

View File

@ -11249,4 +11249,25 @@ main = defaultMain")))
@code{inline-c}.")
(license license:expat)))
(define-public ghc-bytestring-lexing
(package
(name "ghc-bytestring-lexing")
(version "0.5.0.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://hackage.haskell.org/package/"
"bytestring-lexing/bytestring-lexing-"
version ".tar.gz"))
(sha256
(base32
"0wrzniawhgpphc6yx1v972gyqxdbv0pizaz9bafahrshyb9svy81"))))
(build-system haskell-build-system)
(home-page "http://code.haskell.org/~wren/")
(synopsis "Parse and produce literals from strict or lazy bytestrings")
(description
"This package provides tools to parse and produce literals efficiently
from strict or lazy bytestrings.")
(license license:bsd-2)))
;;; haskell.scm ends here