diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-01-11 14:36:01 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-01-11 18:59:22 +0100 |
commit | 691068f08d23464865162656f0a87223dda93c00 (patch) | |
tree | 53eba9d0f646d83d18a650c2afbf4799166d577f /gnu/packages/image.scm | |
parent | 9d3b6a5d65505018186d778c4812c3c90aab3527 (diff) | |
download | patches-691068f08d23464865162656f0a87223dda93c00.tar patches-691068f08d23464865162656f0a87223dda93c00.tar.gz |
gnu: vigra: Fix 'vigra-config' executable.
This fixes a regression introduced in a82e6faa8b993d1f3b47a8bd22c4509f7cae7ec1
where 'vigra-config' would lack a usable shebang because no 'python'
executable was available.
* gnu/packages/image.scm (vigra)[inputs]: Change from PYTHON to
PYTHON-WRAPPER.
Diffstat (limited to 'gnu/packages/image.scm')
-rw-r--r-- | gnu/packages/image.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 298bff3450..06fe4cb2aa 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -1023,7 +1023,7 @@ graphics image formats like PNG, BMP, JPEG, TIFF and others.") ("libpng" ,libpng) ("libtiff" ,libtiff) ("openexr" ,openexr) - ("python" ,python) + ("python" ,python-wrapper) ("python-numpy" ,python-numpy) ("zlib" ,zlib))) (native-inputs |