diff options
author | Maxim Cournoyer <[email protected]> | 2024-11-11 15:17:09 +0900 |
---|---|---|
committer | Liliana Marie Prikler <[email protected]> | 2025-03-02 20:31:35 +0100 |
commit | 3fe37c0b41f604caaae25f43ed3f0ec61d104656 (patch) | |
tree | 2ce5a4a4de30c4f159102ea2b2de8b8a58acb1d9 | |
parent | f13a77520f8d3fc4ab7e1163f1ea11ea08c1b13e (diff) |
gnu: libquicktime: Remove ffmpeg-4 and gtk+-2 inputs.
* gnu/packages/video.scm (libquicktime) [arguments]: Add #:configure-flags.
[inputs]: Remove ffmpeg-4 and gtk+-2.
Change-Id: I18f6853bb168e765c6f1355c7495d8ce6bd9c066
Signed-off-by: Liliana Marie Prikler <[email protected]>
-rw-r--r-- | gnu/packages/video.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 2d725b50ec..2efbbec5c6 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -542,12 +542,14 @@ as a joint effort between the BBC and Fluendo.") (patches (search-patches "libquicktime-ffmpeg.patch")))) (build-system gnu-build-system) + (arguments + ;; Avoid legacy dependencies such as GTK+ 2 and FFmpeg 4. + (list #:configure-flags #~(list "--without-ffmpeg" + "--without-gtk"))) (native-inputs (list gettext-minimal doxygen pkg-config)) (inputs (list alsa-lib - ffmpeg-4 - gtk+-2 lame libdv libjpeg-turbo |