mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: shadowsocks: Build against openssl.
This patch allows shadowsocks to be used without supplying libopenssl in its configuration. See also https://unix.stackexchange.com/questions/623324/. * gnu/packages/networking.scm (shadowsocks)[inputs]: Add openssl. [#:phases]: Add patch-crypto-paths. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
adf0edadef
commit
403dda2e66
1 changed files with 13 additions and 0 deletions
|
@ -3024,6 +3024,19 @@ (define-public shadowsocks
|
|||
(base32
|
||||
"1idd9b4f2pnhcpk1bh030hqg5zq25gkwxd53xi3c0cj242w7sp2j"))
|
||||
(file-name (git-file-name name version))))
|
||||
(inputs
|
||||
`(("openssl" ,openssl)))
|
||||
(arguments
|
||||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-crypto-paths
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "shadowsocks/shell.py"
|
||||
(("config\\.get\\('libopenssl', None\\)")
|
||||
(format #f "config.get('libopenssl', ~s)"
|
||||
(string-append
|
||||
(assoc-ref inputs "openssl")
|
||||
"/lib/libssl.so")))))))))
|
||||
(build-system python-build-system)
|
||||
(synopsis "Fast tunnel proxy that helps you bypass firewalls")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue