diff options
author | Clément Lassieur <clement@lassieur.org> | 2016-11-11 10:43:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-11-12 13:04:45 +0100 |
commit | 4a38422157d1dcf8505734b818f6c21ffe12c48a (patch) | |
tree | eda8b0752ec0681d4af76c2b68c1a146512b56e8 /gnu/packages/lua.scm | |
parent | e32171eeeb4baef781dac797a76fee100a802a3d (diff) | |
download | patches-4a38422157d1dcf8505734b818f6c21ffe12c48a.tar patches-4a38422157d1dcf8505734b818f6c21ffe12c48a.tar.gz |
gnu: prosody: fix SSL/TLS.
* gnu/packages/lua.scm (lua5.1-sec-0.5): New variable.
* gnu/packages/messaging.scm (prosody):
[inputs]: Change lua5.1-sec to lua5.1-sec-0.5.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/lua.scm')
-rw-r--r-- | gnu/packages/lua.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm index fe0ec208aa..f95da3587d 100644 --- a/gnu/packages/lua.scm +++ b/gnu/packages/lua.scm @@ -6,6 +6,7 @@ ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2016 doncatnip <gnopap@gmail.com> +;;; Copyright © 2016 Clément Lassieur <clement@lassieur.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -280,6 +281,18 @@ communication. It takes an already established TCP connection and creates a secure session between the peers.") (license (package-license lua-5.1)))) +(define-public lua5.1-sec-0.5 + (package + (inherit lua5.1-sec) + (version "0.5.1") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/brunoos/luasec/archive/" + "luasec-" version ".tar.gz")) + (sha256 + (base32 + "01llf5bcrjmqqy6m65avqkajz7h79rvkka6rd131kwr10n75yp3d")))))) + (define-public lua-lgi (package (name "lua-lgi") |