mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-04 02:19:18 -05:00
gnu: Add ghc-word-wrap.
* gnu/packages/haskell-xyz.scm (ghc-word-wrap): New public variable.
This commit is contained in:
parent
7d00f2adde
commit
bcfec279af
1 changed files with 22 additions and 0 deletions
|
@ -15161,6 +15161,28 @@ (define-public ghc-wl-pprint-text
|
|||
"A clone of wl-pprint for use with the text library.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public ghc-word-wrap
|
||||
(package
|
||||
(name "ghc-word-wrap")
|
||||
(version "0.4.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://hackage.haskell.org/package/"
|
||||
"word-wrap/word-wrap-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "15rcqhg9vb7qisk9ryjnyhhfgigxksnkrczycaw2rin08wczjwpb"))))
|
||||
(build-system haskell-build-system)
|
||||
(native-inputs `(("ghc-hspec" ,ghc-hspec)))
|
||||
(arguments
|
||||
`(#:cabal-revision
|
||||
("1" "1k4w4g053vhmpp08542hrqaw81p3p35i567xgdarqmpghfrk68pp")))
|
||||
(home-page "https://github.com/jtdaugherty/word-wrap/")
|
||||
(synopsis "Haskell library for word-wrapping text")
|
||||
(description
|
||||
"The @code{word-wrap} Haskell library wraps long lines of text.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public ghc-word8
|
||||
(package
|
||||
(name "ghc-word8")
|
||||
|
|
Loading…
Reference in a new issue