3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add julia-xorg-xcb-util-jll.

* gnu/packages/julia-jll.scm (julia-xorg-xcb-util-jll): New variable.
This commit is contained in:
Efraim Flashner 2021-05-30 12:45:50 +03:00
parent 4d6ef7eb2c
commit 47bcda6d14
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2200,6 +2200,43 @@ build tree Yggdrasil.")
(description "This package provides a wrapper for the libXrender library.")
(license license:expat)))
(define-public julia-xorg-xcb-util-jll
(package
(name "julia-xorg-xcb-util-jll")
(version "0.4.0+1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaBinaryWrappers/Xorg_xcb_util_jll.jl")
(commit (string-append "Xorg_xcb_util-v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0jywbxwf9x2naqsh9hh231bqpphh15v7cdhijcspjfggwkyq1npi"))))
(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
(("artifact\"Xorg_xcb_util\"")
(string-append "\"" (assoc-ref inputs "xcb-util") "\""))))
;; There's a Julia file for each platform, override them all
(find-files "src/wrappers/" "\\.jl$")))))))
(inputs
`(("xcb-util" ,xcb-util)))
(propagated-inputs
`(("julia-jllwrappers" ,julia-jllwrappers)
("julia-xorg-libxcb-jll" ,julia-xorg-libxcb-jll)))
(home-page "https://github.com/JuliaBinaryWrappers/Xorg_xcb_util_jll.jl")
(synopsis "Xcb-util library wrappers")
(description "This package provides a wrapper for the xcb-util library.")
(license license:expat)))
(define-public julia-xorg-xkbcomp-jll
(package
(name "julia-xorg-xkbcomp-jll")