diff options
author | Timothy Sample <samplet@ngyro.com> | 2018-09-04 00:09:27 -0400 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-10-01 12:12:19 +0200 |
commit | aac78f6be3ae6dc3531ce198021fe58ff86f8528 (patch) | |
tree | 9c024d070fa72948f60ccd1bd5bf0b796f25e0f6 /gnu/packages/haskell-web.scm | |
parent | 01a67f89d1ec6bd981b8c99ef24186ff5c1527c1 (diff) | |
download | patches-aac78f6be3ae6dc3531ce198021fe58ff86f8528.tar patches-aac78f6be3ae6dc3531ce198021fe58ff86f8528.tar.gz |
gnu: Add ghc-tls-session-manager.
* gnu/packages/haskell-web.scm (ghc-tls-session-manager): New variable.
Diffstat (limited to 'gnu/packages/haskell-web.scm')
-rw-r--r-- | gnu/packages/haskell-web.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/haskell-web.scm b/gnu/packages/haskell-web.scm index 4c29964e67..5278cb9259 100644 --- a/gnu/packages/haskell-web.scm +++ b/gnu/packages/haskell-web.scm @@ -600,6 +600,32 @@ transfers.") based WAI (Web Application Interface in Haskell).") (license license:expat))) +(define-public ghc-tls-session-manager + (package + (name "ghc-tls-session-manager") + (version "0.0.0.2") + (source + (origin + (method url-fetch) + (uri (string-append + "https://hackage.haskell.org/package/" + "tls-session-manager/tls-session-manager-" + version ".tar.gz")) + (sha256 + (base32 + "0rvmln545vghsx8zhxp44f0f6pzma8cylarmfhhysy55ipywr1n5")))) + (build-system haskell-build-system) + (inputs + `(("ghc-auto-update" ,ghc-auto-update) + ("ghc-clock" ,ghc-clock) + ("ghc-psqueues" ,ghc-psqueues) + ("ghc-tls" ,ghc-tls))) + (home-page "http://hackage.haskell.org/package/tls-session-manager") + (synopsis "In-memory TLS session manager") + (description "This Haskell library provides a TLS session manager with +limitation, automatic pruning, energy saving and replay resistance.") + (license license:bsd-3))) + (define-public ghc-warp-tls (package (name "ghc-warp-tls") |