diff options
author | jgart <jgart@dismail.de> | 2022-09-07 22:29:54 -0500 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-09-12 14:22:50 +0100 |
commit | 3d8fdd26771708cd754f8591c5176a360a2bd9f7 (patch) | |
tree | 5d39997abf3e405b21b1f5d5d7676b84a759a4e3 /gnu | |
parent | 9877fb03f0b1634d53d51c6777f6c4a73934360d (diff) | |
download | guix-3d8fdd26771708cd754f8591c5176a360a2bd9f7.tar.gz guix-3d8fdd26771708cd754f8591c5176a360a2bd9f7.zip |
gnu: Add ghc-ansi2html.
* gnu/packages/haskell-xyz.scm (ghc-ansi2html): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/haskell-xyz.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index ea9e8e9c6d..db653f8c93 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -16100,6 +16100,24 @@ data Dec a @end example") (license license:bsd-3))) +(define-public ghc-ansi2html + (package + (name "ghc-ansi2html") + (version "0.9") + (source (origin + (method url-fetch) + (uri (hackage-uri "Ansi2Html" version)) + (sha256 + (base32 + "1dqq1rnx1w0cn4w11knmxvn7qy4lg4m39dgw4rs6r2pjqzgrwarh")))) + (build-system haskell-build-system) + (home-page "http://janzzstimmpfle.de/~jens/software/Ansi2Html/") + (synopsis "Convert ANSI Terminal Sequences to nice HTML markup") + (description + "This package enables integration of terminal screen state in html +pages.") + (license license:bsd-3))) + (define-public ghc-singleton-bool (package (name "ghc-singleton-bool") |