mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: Add julia-expat-jll.
* gnu/packages/julia-jll.scm (julia-expat-jll): New variable.
This commit is contained in:
parent
e2ee6686ef
commit
3d12f59d1f
1 changed files with 38 additions and 0 deletions
|
@ -133,6 +133,44 @@ (define-public julia-compilersupportlibraries-jll
|
|||
build tree Yggdrasil.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-expat-jll
|
||||
(package
|
||||
(name "julia-expat-jll")
|
||||
(version "2.2.10+0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaBinaryWrappers/Expat_jll.jl")
|
||||
(commit (string-append "Expat-v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0lkhkh0067lns35njpc1bqbx6653r99lrjcbgrihlln9a7k9qj1s"))))
|
||||
(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
|
||||
(("generate_wrapper_header.*")
|
||||
(string-append
|
||||
"generate_wrapper_header(\"Expat\", \""
|
||||
(assoc-ref inputs "expat") "\")\n"))))
|
||||
;; There's a Julia file for each platform, override them all
|
||||
(find-files "src/wrappers/" "\\.jl$")))))))
|
||||
(inputs
|
||||
`(("expat" ,expat)))
|
||||
(propagated-inputs
|
||||
`(("julia-jllwrappers" ,julia-jllwrappers)))
|
||||
(home-page "https://github.com/JuliaBinaryWrappers/Expat_jll.jl")
|
||||
(synopsis "Expat library wrappers")
|
||||
(description "This package provides a wrapper for the expat library.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-ffmpeg-jll
|
||||
(package
|
||||
(name "julia-ffmpeg-jll")
|
||||
|
|
Loading…
Reference in a new issue