gnu: octave: Add a search path for CURLOPT_CAPATH.
* gnu/packages/maths.scm (octave)[native-search-paths]: New field.
This commit is contained in:
parent
a68b451423
commit
116af86f14
|
@ -1402,6 +1402,13 @@ can solve two kinds of problems:
|
||||||
("less" ,less)
|
("less" ,less)
|
||||||
("ghostscript" ,ghostscript)
|
("ghostscript" ,ghostscript)
|
||||||
("gnuplot" ,gnuplot)))
|
("gnuplot" ,gnuplot)))
|
||||||
|
;; Octave code uses this variable to detect directories holding multiple CA
|
||||||
|
;; certificates to verify peers with. This is required for the networking
|
||||||
|
;; functions that require encryption to work properly.
|
||||||
|
(native-search-paths
|
||||||
|
(list (search-path-specification
|
||||||
|
(variable "CURLOPT_CAPATH")
|
||||||
|
(files '("etc/ssl/certs")))))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
(list (string-append "--with-shell="
|
(list (string-append "--with-shell="
|
||||||
|
|
Loading…
Reference in New Issue