diff options
| author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-02-09 14:57:26 +0900 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-06 14:52:03 +0100 |
| commit | 7ea46ac72fa01d15c333ee1fbac29e80dff4aa7c (patch) | |
| tree | 150ad23eb4a9c7241228e1f311d5aad1cc8fc7ba | |
| parent | 2314a89ccc1f4bf6ef96f226d2fc1423715474a9 (diff) | |
gnu: p11-kit: Add search path specification for P11_MODULE_PATH.
* gnu/packages/tls.scm (p11-kit) [native-search-paths]: New field.
Change-Id: I10b2420340aa42dd1e91d41030b1fa44b549f631
| -rw-r--r-- | gnu/packages/tls.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index cffbffa2ce6..efb8d7a62f3 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -189,6 +189,13 @@ in intelligent transportation networks.") ,(file-append (this-package-native-input "nss-certs") "/etc/ssl/certs"))))) ":"))))) + (native-search-paths + (list (search-path-specification + (variable "P11_MODULE_PATH") + (files (list "share/p11-kit/modules")) + ;; Helas, this only currently support a single PATH entry. It'll + ;; thus only work in profiles, not in the build environment. + (separator #f)))) (home-page "https://p11-glue.github.io/p11-glue/p11-kit.html") (synopsis "PKCS#11 library") (description |
