mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: guile-dbi: Remove hard-coded guile effective version.
* gnu/packages/guile-xyz.scm (guile-dbi)[arguments]: Import target-guile-effective-version from (guix build guile-build-system). Use target-guile-effective-version to determine the guile effective version.
This commit is contained in:
parent
6849b60f1b
commit
caa4f7cd78
1 changed files with 15 additions and 7 deletions
|
@ -1530,9 +1530,15 @@ (define-public guile-dbi
|
|||
"0nswd067gvpy9pnig409ympkw29akh9lb2i6g3w7r18g1s0ivah2"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:configure-flags
|
||||
`(#:modules (((guix build guile-build-system)
|
||||
#:select (target-guile-effective-version))
|
||||
,@%gnu-build-system-modules)
|
||||
#:imported-modules ((guix build guile-build-system)
|
||||
,@%gnu-build-system-modules)
|
||||
#:configure-flags
|
||||
(list (string-append
|
||||
"--with-guile-site-dir=" %output "/share/guile/site/2.2"))
|
||||
"--with-guile-site-dir=" %output "/share/guile/site/"
|
||||
(target-guile-effective-version (assoc-ref %build-inputs "guile"))))
|
||||
#:make-flags
|
||||
(list (string-append
|
||||
"LDFLAGS=-Wl,-rpath=" %output "/lib:"
|
||||
|
@ -1541,11 +1547,13 @@ (define-public guile-dbi
|
|||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'patch-extension-path
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(dbi.scm (string-append
|
||||
out "/share/guile/site/2.2/dbi/dbi.scm"))
|
||||
(ext (string-append out "/lib/libguile-dbi")))
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(dbi.scm (string-append out "/share/guile/site/"
|
||||
(target-guile-effective-version
|
||||
(assoc-ref inputs "guile"))
|
||||
"/dbi/dbi.scm"))
|
||||
(ext (string-append out "/lib/libguile-dbi")))
|
||||
(substitute* dbi.scm (("libguile-dbi") ext))
|
||||
#t))))))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue