mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: Add julia-xslt-jll.
* gnu/packages/julia-jll.scm (julia-xslt-jll): New variable.
This commit is contained in:
parent
f57a0f4992
commit
8a2e54cb6f
1 changed files with 43 additions and 0 deletions
|
@ -1533,6 +1533,49 @@ (define-public julia-xorg-xtrans-jll
|
||||||
(description "This package provides a wrapper for the xtrans library.")
|
(description "This package provides a wrapper for the xtrans library.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-xslt-jll
|
||||||
|
(package
|
||||||
|
(name "julia-xslt-jll")
|
||||||
|
(version "1.1.34+0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaBinaryWrappers/XSLT_jll.jl")
|
||||||
|
(commit (string-append "XSLT-v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0wjkfnrgpd7c6i4ga5xzsqqmfrxcdkr1kjsxmd9bff8cqvyknnhq"))))
|
||||||
|
(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(\"XSLT\", \""
|
||||||
|
(assoc-ref inputs "libxslt") "\")\n"))))
|
||||||
|
;; There's a Julia file for each platform, override them all
|
||||||
|
(find-files "src/wrappers/" "\\.jl$")))))))
|
||||||
|
(inputs
|
||||||
|
`(("libxslt" ,libxslt)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-jllwrappers" ,julia-jllwrappers)
|
||||||
|
("julia-libgcrypt-jll" ,julia-libgcrypt-jll)
|
||||||
|
("julia-libgpg-error-jll" ,julia-libgpg-error-jll)
|
||||||
|
("julia-libiconv-jll" ,julia-libiconv-jll)
|
||||||
|
("julia-xml2-jll" ,julia-xml2-jll)
|
||||||
|
("julia-zlib-jll" ,julia-zlib-jll)))
|
||||||
|
(home-page "https://github.com/JuliaBinaryWrappers/XSLT_jll.jl")
|
||||||
|
(synopsis "Xslt library wrappers")
|
||||||
|
(description "This package provides a wrapper for the libxslt library.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-zlib-jll
|
(define-public julia-zlib-jll
|
||||||
(package
|
(package
|
||||||
(name "julia-zlib-jll")
|
(name "julia-zlib-jll")
|
||||||
|
|
Loading…
Reference in a new issue