[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
24/71: gnu: Add julia-ffmpeg-jll.
From: |
guix-commits |
Subject: |
24/71: gnu: Add julia-ffmpeg-jll. |
Date: |
Sun, 30 May 2021 05:57:36 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 94963f09bf5a67e88e89cc682c31af7116827776
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun May 30 11:18:19 2021 +0300
gnu: Add julia-ffmpeg-jll.
* gnu/packages/julia-jll.scm (julia-ffmpeg-jll): New variable.
---
gnu/packages/julia-jll.scm | 49 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/gnu/packages/julia-jll.scm b/gnu/packages/julia-jll.scm
index 5f4d035..6d05492 100644
--- a/gnu/packages/julia-jll.scm
+++ b/gnu/packages/julia-jll.scm
@@ -125,6 +125,55 @@ originating @code{build_tarballs.jl} script can be found
on the community
build tree Yggdrasil.")
(license license:expat)))
+(define-public julia-ffmpeg-jll
+ (package
+ (name "julia-ffmpeg-jll")
+ (version "4.3.1+2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaBinaryWrappers/FFMPEG_jll.jl")
+ (commit (string-append "FFMPEG-v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1f8pq9nxiiqay9qcsly1wkfpyz9nbxakf78ryi2c7g8p5v80k6d3"))))
+ (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\"FFMPEG\"")
+ (string-append "\"" (assoc-ref inputs "ffmpeg") "\""))))
+ ;; There's a Julia file for each platform, override them all
+ (find-files "src/wrappers/" "\\.jl$")))))))
+ (inputs
+ `(("ffmpeg" ,ffmpeg)))
+ (propagated-inputs
+ `(("julia-jllwrappers" ,julia-jllwrappers)
+ ("julia-bzip2-jll" ,julia-bzip2-jll)
+ ("julia-freetype2-jll" ,julia-freetype2-jll)
+ ("julia-fribidi-jll" ,julia-fribidi-jll)
+ ("julia-lame-jll" ,julia-lame-jll)
+ ("julia-libass-jll" ,julia-libass-jll)
+ ("julia-libfdk-aac-jll" ,julia-libfdk-aac-jll)
+ ("julia-libvorbis-jll" ,julia-libvorbis-jll)
+ ("julia-openssl-jll" ,julia-openssl-jll)
+ ("julia-opus-jll" ,julia-opus-jll)
+ ("julia-ogg-jll" ,julia-ogg-jll)
+ ("julia-x264-jll" ,julia-x264-jll)
+ ("julia-x265-jll" ,julia-x265-jll)
+ ("julia-zlib-jll" ,julia-zlib-jll)))
+ (home-page "https://github.com/JuliaBinaryWrappers/FFMPEG_jll.jl")
+ (synopsis "ffmpeg library wrappers")
+ (description "This package provides a wrapper for ffmpeg.")
+ (license license:expat)))
+
(define-public julia-freetype2-jll
(package
(name "julia-freetype2-jll")
- 28/71: gnu: Add julia-xml2-jll., (continued)
- 28/71: gnu: Add julia-xml2-jll., guix-commits, 2021/05/30
- 34/71: gnu: Add julia-libuuid-jll., guix-commits, 2021/05/30
- 35/71: gnu: Add julia-expat-jll., guix-commits, 2021/05/30
- 23/71: gnu: Add julia-libass-jll., guix-commits, 2021/05/30
- 33/71: gnu: Add julia-pixman-jll., guix-commits, 2021/05/30
- 37/71: gnu: Add julia-xorg-libxdmcp-jll., guix-commits, 2021/05/30
- 39/71: gnu: Add julia-libgcrypt-jll., guix-commits, 2021/05/30
- 40/71: gnu: Add julia-xorg-xtrans-jll., guix-commits, 2021/05/30
- 38/71: gnu: Add julia-libgpg-error-jll., guix-commits, 2021/05/30
- 36/71: gnu: Add julia-xorg-libxau-jll., guix-commits, 2021/05/30
- 24/71: gnu: Add julia-ffmpeg-jll.,
guix-commits <=
- 25/71: gnu: Add julia-ffmpeg., guix-commits, 2021/05/30
- 29/71: gnu: Add julia-gettext-jll., guix-commits, 2021/05/30
- 46/71: gnu: Add julia-xorg-libxext-jll., guix-commits, 2021/05/30
- 30/71: gnu: Add julia-pcre-jll., guix-commits, 2021/05/30
- 31/71: gnu: Add julia-libmount-jll., guix-commits, 2021/05/30
- 41/71: gnu: Add julia-lzo-jll., guix-commits, 2021/05/30
- 42/71: gnu: Add julia-xslt-jll., guix-commits, 2021/05/30
- 43/71: gnu: Add julia-xorg-libpthread-stubs-jll., guix-commits, 2021/05/30
- 48/71: gnu: Add julia-xorg-libxrender-jll., guix-commits, 2021/05/30
- 50/71: gnu: Add julia-xorg-libxfixes-jll., guix-commits, 2021/05/30