mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add julia-libiconv-jll.
* gnu/packages/julia-jll.scm (julia-libiconv-jll): New variable.
This commit is contained in:
parent
0c1b3444e1
commit
b3ffbab8f8
1 changed files with 39 additions and 0 deletions
|
@ -26,6 +26,7 @@ (define-module (gnu packages julia-jll)
|
|||
#:use-module (guix build-system julia)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages audio)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages fontutils)
|
||||
#:use-module (gnu packages fribidi)
|
||||
|
@ -526,6 +527,44 @@ (define-public julia-libfdk-aac-jll
|
|||
(description "This package provides a wrapper for the libfdk audio library.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-libiconv-jll
|
||||
(package
|
||||
(name "julia-libiconv-jll")
|
||||
(version "1.16.1+0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaBinaryWrappers/Libiconv_jll.jl")
|
||||
(commit (string-append "Libiconv-v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "185f2460ypig1klgi8rdb0s2c8l4hxdbmsz9ihj7bdydl964s2hh"))))
|
||||
(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(\"Libiconv\", \""
|
||||
(assoc-ref inputs "libiconv") "\")\n"))))
|
||||
;; There's a Julia file for each platform, override them all
|
||||
(find-files "src/wrappers/" "\\.jl$")))))))
|
||||
(inputs
|
||||
`(("libiconv" ,libiconv)))
|
||||
(propagated-inputs
|
||||
`(("julia-jllwrappers" ,julia-jllwrappers)))
|
||||
(home-page "https://github.com/JuliaBinaryWrappers/Libiconv_jll.jl")
|
||||
(synopsis "Libiconv library wrappers")
|
||||
(description "This package provides a wrapper for the libiconv library.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-libpng-jll
|
||||
(package
|
||||
(name "julia-libpng-jll")
|
||||
|
|
Loading…
Reference in a new issue