me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-libvorbis-jll.

* gnu/packages/julia-jll.scm (julia-libvorbis-jll): New variable.
master
Efraim Flashner 2021-05-30 11:02:30 +03:00
parent 75ea06d8db
commit 92e817ea15
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 38 additions and 0 deletions

View File

@ -513,6 +513,44 @@ used in autogenerated packages via @code{BinaryBuilder.jl}.")
(description "This package provides a wrapper for libtiff")
(license license:expat)))
(define-public julia-libvorbis-jll
(package
(name "julia-libvorbis-jll")
(version "1.3.6+4")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaBinaryWrappers/libvorbis_jll.jl")
(commit (string-append "libvorbis-v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1zmwhpjy6gr865psjn600g6ickskp4sq34qf1qg8ji6x4v09pzrh"))))
(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\"libvorbis\"")
(string-append "\"" (assoc-ref inputs "libvorbis") "\""))))
;; There's a Julia file for each platform, override them all
(find-files "src/wrappers/" "\\.jl$")))))))
(inputs
`(("libvorbis" ,libvorbis)))
(propagated-inputs
`(("julia-jllwrappers" ,julia-jllwrappers)
("julia-ogg-jll" ,julia-ogg-jll)))
(home-page "https://github.com/JuliaBinaryWrappers/libvorbis_jll.jl")
(synopsis "Libvorbis library wrappers")
(description
"This package provides a wrapper for the libvorbis audio library.")
(license license:expat)))
(define-public julia-mbedtls-jll
(package
(name "julia-mbedtls-jll")