me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-libffi-jll.

* gnu/packages/julia-jll.scm (julia-libffi-jll): New variable.
master
Efraim Flashner 2021-05-30 11:26:42 +03:00
parent b3ffbab8f8
commit 09b63f2cd8
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 38 additions and 0 deletions

View File

@ -34,6 +34,7 @@
#:use-module (gnu packages image) #:use-module (gnu packages image)
#:use-module (gnu packages imagemagick) #:use-module (gnu packages imagemagick)
#:use-module (gnu packages julia) #:use-module (gnu packages julia)
#:use-module (gnu packages libffi)
#:use-module (gnu packages maths) #:use-module (gnu packages maths)
#:use-module (gnu packages mp3) #:use-module (gnu packages mp3)
#:use-module (gnu packages tls) #:use-module (gnu packages tls)
@ -527,6 +528,43 @@ used in autogenerated packages via @code{BinaryBuilder.jl}.")
(description "This package provides a wrapper for the libfdk audio library.") (description "This package provides a wrapper for the libfdk audio library.")
(license license:expat))) (license license:expat)))
(define-public julia-libffi-jll
(package
(name "julia-libffi-jll")
(version "3.3.0+0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaBinaryWrappers/Libffi_jll.jl")
(commit (string-append "Libffi-v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "008ajchli77airvibdgqw7gvmhk9w63qrv94f88iz1ixxyrycnm0"))))
(build-system julia-build-system)
(arguments
'(#:tests? #f ; no runtests
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'override-binary-path
(lambda* (#:key inputs #:allow-other-keys)
(map
(lambda (wrapper)
(substitute* wrapper
(("lib64") "lib")
(("artifact\"Libffi\"")
(string-append "\"" (assoc-ref inputs "libffi") "\""))))
;; There's a Julia file for each platform, override them all
(find-files "src/wrappers/" "\\.jl$")))))))
(inputs
`(("libffi" ,libffi)))
(propagated-inputs
`(("julia-jllwrappers" ,julia-jllwrappers)))
(home-page "https://github.com/JuliaBinaryWrappers/Libffi_jll.jl")
(synopsis "Libffi library wrappers")
(description "This package provides a wrapper for the libffi library.")
(license license:expat)))
(define-public julia-libiconv-jll (define-public julia-libiconv-jll
(package (package
(name "julia-libiconv-jll") (name "julia-libiconv-jll")