mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add julia-xorg-libxcursor-jll.
* gnu/packages/julia-jll.scm (julia-xorg-libxcursor-jll): New variable.
This commit is contained in:
parent
98cfe462c2
commit
92873d3bfe
1 changed files with 38 additions and 0 deletions
|
@ -1666,6 +1666,44 @@ (define-public julia-xorg-libxcb-jll
|
||||||
(description "This package provides a wrapper for the libxcb library.")
|
(description "This package provides a wrapper for the libxcb library.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-xorg-libxcursor-jll
|
||||||
|
(package
|
||||||
|
(name "julia-xorg-libxcursor-jll")
|
||||||
|
(version "1.2.0+3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaBinaryWrappers/Xorg_libXcursor_jll.jl")
|
||||||
|
(commit (string-append "Xorg_libXcursor-v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0hxhpsjw1zk30qphrp90g1wvqfs1hr47qifn1gqgx73ci5nmq0y7"))))
|
||||||
|
(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_libXcursor\"")
|
||||||
|
(string-append "\"" (assoc-ref inputs "libxcursor") "\""))))
|
||||||
|
;; There's a Julia file for each platform, override them all
|
||||||
|
(find-files "src/wrappers/" "\\.jl$")))))))
|
||||||
|
(inputs
|
||||||
|
`(("libxcursor" ,libxcursor)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-jllwrappers" ,julia-jllwrappers)
|
||||||
|
("julia-xorg-libxfixes-jll" ,julia-xorg-libxfixes-jll)
|
||||||
|
("julia-xorg-libxrender-jll" ,julia-xorg-libxrender-jll)))
|
||||||
|
(home-page "https://github.com/JuliaBinaryWrappers/Xorg_libXcursor_jll.jl")
|
||||||
|
(synopsis "Libxcursor library wrappers")
|
||||||
|
(description "This package provides a wrapper for the libxcursor library.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-xorg-libxdmcp-jll
|
(define-public julia-xorg-libxdmcp-jll
|
||||||
(package
|
(package
|
||||||
(name "julia-xorg-libxdmcp-jll")
|
(name "julia-xorg-libxdmcp-jll")
|
||||||
|
|
Loading…
Reference in a new issue