mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add julia-ffmpeg.
* gnu/packages/julia-xyz.scm (julia-ffmpeg): New variable.
This commit is contained in:
parent
94963f09bf
commit
0c1b3444e1
1 changed files with 24 additions and 0 deletions
|
@ -596,6 +596,30 @@ (define-public julia-example
|
|||
(description "This package provides various examples.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public julia-ffmpeg
|
||||
(package
|
||||
(name "julia-ffmpeg")
|
||||
(version "0.4.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaIO/FFMPEG.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1kwqixwhnnxs59xsw2k44xxnkx5fn4y49g58l5snfbszycxq7lls"))))
|
||||
(build-system julia-build-system)
|
||||
(propagated-inputs
|
||||
`(("julia-ffmpeg-jll" ,julia-ffmpeg-jll)
|
||||
("julia-x264-jll" ,julia-x264-jll)))
|
||||
(home-page "https://github.com/JuliaIO/FFMPEG.jl")
|
||||
(synopsis "Julia Package for ffmpeg")
|
||||
(description "This package is made to be included into packages that just
|
||||
need the ffmpeg binaries + executables, and don't want the overhead of
|
||||
@code{VideoIO.jl}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-fillarrays
|
||||
(package
|
||||
(name "julia-fillarrays")
|
||||
|
|
Loading…
Reference in a new issue