mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: cl-ana: Fix build.
* gnu/packages/lisp-xyz.scm (sbcl-cl-ana)[arguments]: Use gexp. Update 'fix-paths' phase. Add 'fix-newer-hdf5-compatibility' phase.
This commit is contained in:
parent
a2ed9816c9
commit
b6ffcc4de4
1 changed files with 29 additions and 10 deletions
|
@ -10809,16 +10809,35 @@ sacrificing much in the way of power.")
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list gnuplot)) ;; for gnuplot-interface
|
(list gnuplot)) ;; for gnuplot-interface
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list #:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'fix-paths
|
(add-after 'unpack 'fix-paths
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(substitute* "hdf-cffi/src/library.lisp"
|
(substitute* "hdf-cffi/src/library.lisp"
|
||||||
(("libhdf5.so")
|
(("libhdf5.so")
|
||||||
(search-input-file inputs "/lib/libhdf5.so")))
|
(search-input-file inputs "/lib/libhdf5.so")))
|
||||||
(substitute* "gsl-cffi/gsl-cffi.lisp"
|
(substitute* (list "gsl-cffi/gsl-cffi.lisp"
|
||||||
(("libgsl.so")
|
"spline/spline.lisp")
|
||||||
(search-input-file inputs "/lib/libgsl.so"))))))))
|
(("libgsl.so")
|
||||||
|
(search-input-file inputs "/lib/libgsl.so")))))
|
||||||
|
(add-after 'fix-paths 'fix-newer-hdf5-compatibility
|
||||||
|
(lambda _
|
||||||
|
(substitute* (list "hdf-cffi/src/h5-grovel.lisp"
|
||||||
|
"hdf-cffi/src/h5a-grovel.lisp"
|
||||||
|
"hdf-cffi/src/h5d-grovel.lisp"
|
||||||
|
"hdf-cffi/src/h5f-grovel.lisp"
|
||||||
|
"hdf-cffi/src/h5g-grovel.lisp"
|
||||||
|
"hdf-cffi/src/h5i-grovel.lisp"
|
||||||
|
"hdf-cffi/src/h5l-grovel.lisp"
|
||||||
|
"hdf-cffi/src/h5o-grovel.lisp"
|
||||||
|
"hdf-cffi/src/h5p-grovel.lisp"
|
||||||
|
"hdf-cffi/src/h5pl-grovel.lisp"
|
||||||
|
"hdf-cffi/src/h5r-grovel.lisp"
|
||||||
|
"hdf-cffi/src/h5s-grovel.lisp"
|
||||||
|
"hdf-cffi/src/h5t-grovel.lisp"
|
||||||
|
"hdf-cffi/src/h5z-grovel.lisp")
|
||||||
|
(("_H5private_H")
|
||||||
|
"H5private_H")))))))
|
||||||
(synopsis "Common Lisp data analysis library")
|
(synopsis "Common Lisp data analysis library")
|
||||||
(description
|
(description
|
||||||
"CL-ANA is a data analysis library in Common Lisp providing tabular and
|
"CL-ANA is a data analysis library in Common Lisp providing tabular and
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue