1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: w3m: Set native-search-paths.

This allows discovery of certificates upon adding nss-certs into the profile.

* gnu/packages/w3m.scm (w3m)[native-search-paths]: Set to $SSL_CERT_DIR and
$SSL_CERT_FILE.

Change-Id: I89b5847930a7cf2f831afee0525df7e83c368d04
Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
Tomas Volf
2025-03-16 15:07:50 +01:00
committed by Ian Eure
parent 8f35d477f8
commit b7ed6ba98e

View File

@@ -37,7 +37,8 @@
#:use-module (gnu packages)
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix build-system gnu))
#:use-module (guix build-system gnu)
#:use-module ((guix search-paths) #:select ($SSL_CERT_DIR $SSL_CERT_FILE)))
(define-public w3m
(package
@@ -79,6 +80,7 @@
zlib))
(native-inputs
(list gettext-minimal perl pkg-config))
(native-search-paths (list $SSL_CERT_DIR $SSL_CERT_FILE))
(home-page "https://w3m.sourceforge.net/")
(synopsis "Text-mode web browser")
(description