mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: Add julia-xorg-libxdmcp-jll.
* gnu/packages/julia-jll.scm (julia-xorg-libxdmcp-jll): New variable.
This commit is contained in:
parent
154f0a9b14
commit
71b0d280f7
1 changed files with 36 additions and 0 deletions
|
@ -1345,6 +1345,42 @@ (define-public julia-xorg-libxau-jll
|
||||||
(description "This package provides a wrapper for the libxau library.")
|
(description "This package provides a wrapper for the libxau library.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-xorg-libxdmcp-jll
|
||||||
|
(package
|
||||||
|
(name "julia-xorg-libxdmcp-jll")
|
||||||
|
(version "1.1.3+3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaBinaryWrappers/Xorg_libXdmcp_jll.jl")
|
||||||
|
(commit (string-append "Xorg_libXdmcp-v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1ghw8c7ibkm2hv4h38qyhbxfmyizxszqv6fv8qzlb5031dmshnap"))))
|
||||||
|
(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_libXdmcp\"")
|
||||||
|
(string-append "\"" (assoc-ref inputs "libxdmcp") "\""))))
|
||||||
|
;; There's a Julia file for each platform, override them all
|
||||||
|
(find-files "src/wrappers/" "\\.jl$")))))))
|
||||||
|
(inputs
|
||||||
|
`(("libxdmcp" ,libxdmcp)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-jllwrappers" ,julia-jllwrappers)))
|
||||||
|
(home-page "https://github.com/JuliaBinaryWrappers/Xorg_libXdmcp_jll.jl")
|
||||||
|
(synopsis "Libxdmcp library wrappers")
|
||||||
|
(description "This package provides a wrapper for the libxdmcp 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