diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-05-30 11:59:16 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-05-30 12:01:50 +0200 |
commit | 296fe37aaa062799817f19429ea51e6be75aa588 (patch) | |
tree | bcc05cbfa32b7b4ef63ed4e0de8243766f13b995 | |
parent | 9d6bf9a25364ea813ddf8c85674c4df5b269e4e5 (diff) | |
download | guix-296fe37aaa062799817f19429ea51e6be75aa588.tar.gz guix-296fe37aaa062799817f19429ea51e6be75aa588.zip |
gnu: vapoursynth: Make python a regular input.
This follows up on c00b1760f605255719a525e52c268b222a1f5184, although
meson-build-system's lack of cross-compilation makes it theoretical.
* gnu/packages/video.scm (vapoursynth)[native-inputs]: Move python from
here…
[inputs]: …to here.
-rw-r--r-- | gnu/packages/video.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 5975004049..50ede7cc0a 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2835,11 +2835,11 @@ capabilities.") ("cython" ,python-cython) ("libtool" ,libtool) ("pkg-config" ,pkg-config) - ("python" ,python) ("yasm" ,yasm))) (inputs `(("ffmpeg" ,ffmpeg) ("libass" ,libass) + ("python" ,python) ("tesseract-ocr" ,tesseract-ocr) ("zimg" ,zimg))) (home-page "http://www.vapoursynth.com/") |