diff options
author | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-12 23:08:16 +0900 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2025-07-27 11:09:01 -0400 |
commit | 55392d6f143882bc931a426f8a0933af07e50ae7 (patch) | |
tree | 3d99c7ff4f9d1ee99eda56bd576ba61aa17f2941 | |
parent | 0f8533c96d848f8672032fd3468ff6edb58fb6c7 (diff) |
gnu: ffmpeg-7: Enable vulkan support.
* gnu/packages/video.scm (ffmpeg-7) [native-inputs]: Add vulkan-headers.
[inputs]: Add shaderc, spirv-tools and vulkan-loader.
[configure-flags]: Add --enable-libshaderc and --enable-vulkan.
Change-Id: I469b013f6fc4d85a86004615948d3a03c9c3efde
-rw-r--r-- | gnu/packages/video.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index cce0c5c0f0..bc3fbe520e 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1651,7 +1651,7 @@ operate properly.") version ".tar.xz")) (sha256 (base32 - "12dkv17mrsdqrm70c30azjw7qi1lfxca7xisw81x6flacddm2il6")))) + "1c837agaw8ljhjx6ndp2w7hffi2mkb22vnmb8v0fbfqdbqwq8fbk")))) (outputs '("out" "debug")) (build-system gnu-build-system) (inputs @@ -1682,13 +1682,16 @@ operate properly.") mesa openal pulseaudio + shaderc sdl2 soxr speex + spirv-tools srt svt-av1 twolame vidstab + vulkan-loader x265 xvid zlib))) @@ -1698,6 +1701,7 @@ operate properly.") pkg-config texinfo speex + vulkan-headers yasm)) (arguments (list @@ -1772,6 +1776,7 @@ operate properly.") #$@(if (this-package-input "rav1e") '("--enable-librav1e") '()) + "--enable-libshaderc" "--enable-libsoxr" "--enable-libspeex" "--enable-libsrt" @@ -1789,6 +1794,7 @@ operate properly.") "--enable-opengl" "--enable-libdrm" "--enable-vaapi" + "--enable-vulkan" "--enable-runtime-cpudetect" |