diff options
Diffstat (limited to 'gnu/packages/lisp.scm')
-rw-r--r-- | gnu/packages/lisp.scm | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 3664e11a5b..c6ccaaf97e 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 @@ -918,7 +925,7 @@ interface to the Tk widget system.") (define-public janet (package (name "janet") - (version "1.37.1") + (version "1.38.0") (source (origin (method git-fetch) @@ -927,7 +934,7 @@ interface to the Tk widget system.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "06ym80siwvlg3fmha01vsaqilcd7fjx8wq61zql906yjiljq22rb")))) + (base32 "1ym852ns8s1m4br33yzw4ak475j5y8svh7bpzd22mhbaqqbc3drw")))) (build-system gnu-build-system) (arguments (list #:make-flags |