mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add julia-lame-jll.
* gnu/packages/julia-jll.scm (julia-lame-jll): New variable.
This commit is contained in:
parent
6e07d698d2
commit
d3f8731b63
1 changed files with 37 additions and 0 deletions
|
@ -34,6 +34,7 @@ (define-module (gnu packages julia-jll)
|
|||
#:use-module (gnu packages imagemagick)
|
||||
#:use-module (gnu packages julia)
|
||||
#:use-module (gnu packages maths)
|
||||
#:use-module (gnu packages mp3)
|
||||
#:use-module (gnu packages tls)
|
||||
#:use-module (gnu packages video)
|
||||
#:use-module (gnu packages web))
|
||||
|
@ -363,6 +364,42 @@ (define-public julia-jpegturbo-jll
|
|||
(description "This package provides a wrapper for the libjpeg-turbo library.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-lame-jll
|
||||
(package
|
||||
(name "julia-lame-jll")
|
||||
(version "3.100.0+1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaBinaryWrappers/LAME_jll.jl")
|
||||
(commit (string-append "LAME-v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1ck14hwrapcn5wiazf4m2brkqmlpiqpyr0468p467418av837y1c"))))
|
||||
(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\"LAME\"")
|
||||
(string-append "\"" (assoc-ref inputs "lame") "\""))))
|
||||
;; There's a Julia file for each platform, override them all
|
||||
(find-files "src/wrappers/" "\\.jl$")))))))
|
||||
(inputs
|
||||
`(("lame" ,lame)))
|
||||
(propagated-inputs
|
||||
`(("julia-jllwrappers" ,julia-jllwrappers)))
|
||||
(home-page "https://github.com/JuliaBinaryWrappers/LAME_jll.jl")
|
||||
(synopsis "Lame library wrappers")
|
||||
(description "This package provides a wrapper for the lame audio encoder.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-libfdk-aac-jll
|
||||
(package
|
||||
(name "julia-libfdk-aac-jll")
|
||||
|
|
Loading…
Reference in a new issue