diff options
author | Marius Bakke <marius@gnu.org> | 2022-12-12 13:27:30 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-12-12 15:12:57 +0100 |
commit | 3dc667b6f81ef32d041cfd6b6abceb078d1e02c3 (patch) | |
tree | 76cce37eb8502d8eed9db3610b19f4f3e9cc5bd9 /gnu/packages/video.scm | |
parent | 85ea2dfc4cafca62a6543a74f10f6d30e4e1abbd (diff) | |
download | guix-3dc667b6f81ef32d041cfd6b6abceb078d1e02c3.tar.gz |
gnu: vapoursynth: Remove input labels.
* gnu/packages/video.scm (vapoursynth)[native-inputs]: Remove labels.
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index d35a07d877..1f9b2dff7a 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -3063,12 +3063,12 @@ capabilities.") (wrap-program (string-append out "/bin/vspipe") `("PYTHONPATH" ":" = (,site))))))))) (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("cython" ,python-cython) - ("libtool" ,libtool) - ("pkg-config" ,pkg-config) - ("yasm" ,yasm))) + (list autoconf + automake + python-cython + libtool + pkg-config + yasm)) (inputs (list ffmpeg libass python tesseract-ocr zimg)) (home-page "http://www.vapoursynth.com/") |