gnu: acme-client: Provide path to certificates.
* gnu/packages/tls.scm (acme-client)[arguments]: Add 'patch-paths' phase.master
parent
76b3fbbce6
commit
7c1a7bf484
|
@ -717,6 +717,13 @@ number generator")
|
||||||
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-paths
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(let ((pem (string-append (assoc-ref inputs "libressl")
|
||||||
|
"/etc/ssl/cert.pem")))
|
||||||
|
(substitute* "http.c"
|
||||||
|
(("/etc/ssl/cert.pem") pem))
|
||||||
|
#t)))
|
||||||
(delete 'configure)))) ; no './configure' script
|
(delete 'configure)))) ; no './configure' script
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
|
|
Reference in New Issue