diff options
author | Maxim Cournoyer <[email protected]> | 2024-11-11 15:17:10 +0900 |
---|---|---|
committer | Liliana Marie Prikler <[email protected]> | 2025-03-02 20:31:35 +0100 |
commit | f13a77520f8d3fc4ab7e1163f1ea11ea08c1b13e (patch) | |
tree | 27f93ea8530b4c1c2b18d97fae3c1ab6fe87df1b | |
parent | 391305093ffcf9cbdad147aaf10d1bc4340029d6 (diff) |
gnu: mjpegtools: Remove gtk+-2 input.
* gnu/packages/video.scm (mjpegtools) [arguments]: Add #:configure-flags.
[inputs]: Remove gtk+-2.
Change-Id: I0383d5b28c1790dccb949c54925f121c039d7292
Signed-off-by: Liliana Marie Prikler <[email protected]>
-rw-r--r-- | gnu/packages/video.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 29bf096061..2d725b50ec 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -623,8 +623,10 @@ receiving MJPG streams.") (sha256 (base32 "16pl22ra3x2mkp8p3awslhlhj46b1nq9g89301gb0q4rgmnm705i")))) (build-system gnu-build-system) + ;; Avoid a dependency on the legacy GTK+ 2. + (arguments (list #:configure-flags #~(list "--without-gtk"))) (inputs - (list gtk+-2 libdv libjpeg-turbo libpng libquicktime sdl)) + (list libdv libjpeg-turbo libpng libquicktime sdl)) (native-inputs (list pkg-config)) (synopsis "Tools for handling MPEG") |