gnu: Add julia-libfdk-aac-jll.

* gnu/packages/julia-jll.scm (julia-libfdk-aac-jll): New variable.
This commit is contained in:
Efraim Flashner 2021-05-30 10:56:05 +03:00
parent 741aab4c42
commit 6e07d698d2
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -25,6 +25,7 @@ (define-module (gnu packages julia-jll)
#:use-module (guix utils)
#:use-module (guix build-system julia)
#:use-module (gnu packages)
#:use-module (gnu packages audio)
#:use-module (gnu packages compression)
#:use-module (gnu packages fontutils)
#:use-module (gnu packages fribidi)
@ -362,6 +363,42 @@ (define-public julia-jpegturbo-jll
(description "This package provides a wrapper for the libjpeg-turbo library.")
(license license:expat)))
(define-public julia-libfdk-aac-jll
(package
(name "julia-libfdk-aac-jll")
(version "0.1.6+2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaBinaryWrappers/libfdk_aac_jll.jl")
(commit (string-append "libfdk_aac-v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0jinb205dn1yfvl0mx7dsah4xj3r8vc3ig8yl72langjc7vrwdn0"))))
(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\"libfdk_aac\"")
(string-append "\"" (assoc-ref inputs "libfdk") "\""))))
;; There's a Julia file for each platform, override them all
(find-files "src/wrappers/" "\\.jl$")))))))
(inputs
`(("libfdk" ,libfdk)))
(propagated-inputs
`(("julia-jllwrappers" ,julia-jllwrappers)))
(home-page "https://github.com/JuliaBinaryWrappers/libfdk_aac_jll.jl")
(synopsis "FDK library wrappers")
(description "This package provides a wrapper for the libfdk audio library.")
(license license:expat)))
(define-public julia-libpng-jll
(package
(name "julia-libpng-jll")