mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add julia-xorg-libx11-jll.
* gnu/packages/julia-jll.scm (julia-xorg-libx11-jll): New variable.
This commit is contained in:
parent
6b10ebc98a
commit
2b93e8cd66
1 changed files with 38 additions and 0 deletions
|
@ -1462,6 +1462,44 @@ (define-public julia-xorg-libpthread-stubs-jll
|
||||||
(description "This package provides a wrapper for the libpthread-stubs library.")
|
(description "This package provides a wrapper for the libpthread-stubs library.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-xorg-libx11-jll
|
||||||
|
(package
|
||||||
|
(name "julia-xorg-libx11-jll")
|
||||||
|
(version "1.6.9+2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaBinaryWrappers/Xorg_libX11_jll.jl")
|
||||||
|
(commit (string-append "Xorg_libX11-v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1fw2dmmw04jmyss43g66q80w3j7wshmxgjccir1hh4c5d8x2zs39"))))
|
||||||
|
(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_libX11\"")
|
||||||
|
(string-append "\"" (assoc-ref inputs "libx11") "\""))))
|
||||||
|
;; There's a Julia file for each platform, override them all
|
||||||
|
(find-files "src/wrappers/" "\\.jl$")))))))
|
||||||
|
(inputs
|
||||||
|
`(("libx11" ,libx11)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-jllwrappers" ,julia-jllwrappers)
|
||||||
|
("julia-xorg-libxcb-jll" ,julia-xorg-libxcb-jll)
|
||||||
|
("julia-xorg-xtrans-jll" ,julia-xorg-xtrans-jll)))
|
||||||
|
(home-page "https://github.com/JuliaBinaryWrappers/Xorg_libX11_jll.jl")
|
||||||
|
(synopsis "LibX11 library wrappers")
|
||||||
|
(description "This package provides a wrapper for the libx11 library.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-xorg-libxau-jll
|
(define-public julia-xorg-libxau-jll
|
||||||
(package
|
(package
|
||||||
(name "julia-xorg-libxau-jll")
|
(name "julia-xorg-libxau-jll")
|
||||||
|
|
Loading…
Reference in a new issue