me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-xml2-jll.

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

View File

@ -40,7 +40,8 @@
#:use-module (gnu packages tls)
#:use-module (gnu packages video)
#:use-module (gnu packages web)
#:use-module (gnu packages xiph))
#:use-module (gnu packages xiph)
#:use-module (gnu packages xml))
;;; TODO: Remove this autogenerated source package
;;; and build it from realse source using <https://github.com/JuliaPackaging/Yggdrasil/>
@ -986,6 +987,46 @@ build tree Yggdrasil.")
(description "This package provides a wrapper for the x265 video library.")
(license license:expat)))
(define-public julia-xml2-jll
(package
(name "julia-xml2-jll")
(version "2.9.12+0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaBinaryWrappers/XML2_jll.jl")
(commit (string-append "XML2-v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1g6wf5r5v2qx6cwv05kd9amcsmv65vkajk43m9r1c35jqs9m8fnm"))))
(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(\"XML2\", \""
(assoc-ref inputs "libxml2") "\")\n"))))
;; There's a Julia file for each platform, override them all
(find-files "src/wrappers/" "\\.jl$")))))))
(inputs
`(("libxml2" ,libxml2)))
(propagated-inputs
`(("julia-jllwrappers" ,julia-jllwrappers)
("julia-libiconv-jll" ,julia-libiconv-jll)
("julia-zlib-jll" ,julia-zlib-jll)))
(home-page "https://github.com/JuliaBinaryWrappers/XML2_jll.jl")
(synopsis "XML2 library wrappers")
(description "This package provides a wrapper for the libxml2 library.")
(license license:expat)))
(define-public julia-zlib-jll
(package
(name "julia-zlib-jll")