Skip to content
Snippets Groups Projects
Unverified Commit 95e6468a authored by Martin Becze's avatar Martin Becze Committed by Ludovic Courtès
Browse files

gnu: chez-scheme: Install libraries to 'lib/csvX.Y.Z-site'


* gnu/packages/chez.scm (chez-make-flags): Add 'chezversion'.

Co-authored-by: default avatarLudovic Courtès <ludo@gnu.org>
parent fe4e770f
No related branches found
No related tags found
No related merge requests found
......@@ -416,9 +416,13 @@ (define chez-configure
;; files.
(define (chez-make-flags name version)
`(let ((out (assoc-ref %outputs "out")))
(list (string-append "PREFIX=" out)
(string-append "DOCDIR=" out "/share/doc/"
,name "-" ,version))))
(list
;; Set 'chezversion' so that libraries are installed in
;; 'lib/csvX.Y.Z-site' like Chez's 'native-search-paths' expects.
(string-append "chezversion=" ,(package-version chez-scheme))
(string-append "PREFIX=" out)
(string-append "DOCDIR=" out "/share/doc/"
,name "-" ,version))))
(define-public chez-matchable
(package
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment