diff options
Diffstat (limited to 'gnu/packages/haskell-apps.scm')
-rw-r--r-- | gnu/packages/haskell-apps.scm | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm index 5a1f654652..def3a90d54 100644 --- a/gnu/packages/haskell-apps.scm +++ b/gnu/packages/haskell-apps.scm @@ -297,7 +297,7 @@ to @code{cabal repl}).") (define-public git-annex (package (name "git-annex") - (version "10.20250630") + (version "10.20250721") (source (origin ;; hackage release doesn't include everything needed for extra bits. @@ -307,7 +307,7 @@ to @code{cabal repl}).") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1livig1x1a929qagisjx33pzmgv38d6fzf11bmy2jfpgvvlk9mfx")))) + (base32 "1a2g4z9fl90kyl7k6clmc61ma2njnljr4na6jbf04m43qnnr9s5a")))) (build-system haskell-build-system) (properties '((upstream-name . "git-annex"))) (arguments @@ -623,6 +623,29 @@ with CSS and mouseover annotations, XHTML 1.0 with inline CSS styling, LaTeX, and mIRC chat codes.") (license license:bsd-3))) +(define-public lhs2tex + (package + (name "lhs2tex") + (version "1.25") + (source + (origin + (method url-fetch) + (uri (hackage-uri "lhs2tex" version)) + (sha256 + (base32 "0cf66z6mgadgqd1xs5b6gw8l9rkwgbfsc5czwdiapn7ichi26qyj")))) + (build-system haskell-build-system) + (properties '((upstream-name . "lhs2tex"))) + (inputs (list ghc-regex-compat)) + (home-page "https://github.com/kosmikus/lhs2tex") + (synopsis "Preprocessor for typesetting Haskell sources with LaTeX") + (description + "This tool is primarily intended for people who want to write articles or +books using LaTeX that contain some Haskell code. It works on literate Haskell +documents where the non-Haskell parts form essentially a valid LaTeX document, +then processes the Haskell code in the document and replaces it with formatted +LaTeX output.") + (license license:gpl2+))) + (define-public kmonad ;; Project is active, but no new releases exist. Pick current master ;; HEAD as of 2024-08-18. |