* [bug#45106] [PATCH] gnu: shadowsocks: Build against openssl.
@ 2020-12-07 20:28 Leo Prikler
2020-12-07 23:48 ` bug#45106: " Marius Bakke
0 siblings, 1 reply; 2+ messages in thread
From: Leo Prikler @ 2020-12-07 20:28 UTC (permalink / raw)
To: 45106
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.
---
gnu/packages/networking.scm | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 8a84c8476a..1f50c76962 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -3024,6 +3024,19 @@ asynchronous model using a modern C++ approach.")
(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
--
2.29.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#45106: [PATCH] gnu: shadowsocks: Build against openssl.
2020-12-07 20:28 [bug#45106] [PATCH] gnu: shadowsocks: Build against openssl Leo Prikler
@ 2020-12-07 23:48 ` Marius Bakke
0 siblings, 0 replies; 2+ messages in thread
From: Marius Bakke @ 2020-12-07 23:48 UTC (permalink / raw)
To: Leo Prikler, 45106-done
[-- Attachment #1: Type: text/plain, Size: 412 bytes --]
Leo Prikler <leo.prikler@student.tugraz.at> skriver:
> 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.
I fixed the syntax error and committed in
403dda2e66dc5c8f23bf66086815133546df1ba0. Thanks!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 507 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-12-07 23:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-07 20:28 [bug#45106] [PATCH] gnu: shadowsocks: Build against openssl Leo Prikler
2020-12-07 23:48 ` bug#45106: " Marius Bakke
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.