diff options
author | jgart <jgart@dismail.de> | 2025-06-19 02:12:11 -0400 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2025-06-19 02:24:24 -0400 |
commit | d620f5ad87d4538fdff5f18208f73732482cb1af (patch) | |
tree | ee87de1fc78c5e24721707adadcff1800d879ee7 | |
parent | 7c85983c09f66e123df28535fe1d0ace73a2cebc (diff) |
gnu: clasp-cl: Add native-search-paths
* gnu/packages/lisp.scm (clasp-cl): Update to Add native-search-paths.
Change-Id: I4d7f96d70f33684a337092110948c4af199057d0
-rw-r--r-- | gnu/packages/lisp.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 3664e11a5b..5f1fdd06ff 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -21,7 +21,7 @@ ;;; Copyright © 2021 Paul A. Patience <paul@apatience.com> ;;; Copyright © 2021 Charles Jackson <charles.b.jackson@protonmail.com> ;;; Copyright © 2022 Joeke de Graaf <joeke@posteo.net> -;;; Copyright © 2021, 2022 jgart <jgart@dismail.de> +;;; Copyright © 2021, 2022, 2025 jgart <jgart@dismail.de> ;;; Copyright © 2022 ( <paren@disroot.org> ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2023 Yovan Naumovski <yovan@gorski.stream> @@ -462,6 +462,13 @@ interface.") (lambda* (#:key outputs #:allow-other-keys) (install-file "build/boehmprecise/lib/libclasp.so" (string-append (assoc-ref outputs "out") "/lib"))))))) + (native-search-paths + (list (search-path-specification + (variable "XDG_DATA_DIRS") + (files '("share"))) + (search-path-specification + (variable "XDG_CONFIG_DIRS") + (files '("etc"))))) (home-page "https://clasp-developers.github.io/") (synopsis "Common Lisp implementation based on LLVM and C++") (description "Clasp is a new Common Lisp implementation that seamlessly |