mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: Add ghc-stringsearch.
* gnu/packages/haskell.scm (ghc-stringsearch): New variable.
This commit is contained in:
parent
281bc4fd5d
commit
fa709a2fc9
1 changed files with 23 additions and 0 deletions
|
@ -2783,4 +2783,27 @@ (define-public ghc-word8
|
||||||
(description "Word8 library to be used with @code{Data.ByteString}.")
|
(description "Word8 library to be used with @code{Data.ByteString}.")
|
||||||
(license bsd-3)))
|
(license bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-stringsearch
|
||||||
|
(package
|
||||||
|
(name "ghc-stringsearch")
|
||||||
|
(version "0.3.6.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"http://hackage.haskell.org/package/stringsearch/stringsearch-"
|
||||||
|
version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0jpy9xjcjdbpi3wk6mg7xwd7wfi2mma70p97v1ij5i8bj9qijpr9"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(home-page "https://bitbucket.org/dafis/stringsearch")
|
||||||
|
(synopsis "Fast searching, splitting and replacing of ByteStrings")
|
||||||
|
(description "This package provides several functions to quickly search
|
||||||
|
for substrings in strict or lazy @code{ByteStrings}. It also provides
|
||||||
|
functions for breaking or splitting on substrings and replacing all
|
||||||
|
occurrences of a substring (the first in case of overlaps) with another.")
|
||||||
|
(license bsd-3)))
|
||||||
|
|
||||||
;;; haskell.scm ends here
|
;;; haskell.scm ends here
|
||||||
|
|
Loading…
Reference in a new issue