diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-08-10 08:43:49 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-08-10 09:14:37 +0200 |
commit | 9611080117cc169ac9c5fba498f504f2431ef4d4 (patch) | |
tree | 1e532092dec4b0dc3e051dde20d91e4d1dc1a6f7 /gnu/packages/fontutils.scm | |
parent | a7e231a2a3edbd6a70949432c1ff434d87f625ff (diff) | |
download | patches-9611080117cc169ac9c5fba498f504f2431ef4d4.tar patches-9611080117cc169ac9c5fba498f504f2431ef4d4.tar.gz |
gnu: fontforge: Build with Python 2.
* gnu/packages/fontutils.scm (fontforge)[inputs]: Replace python-wrapper with
python-2.
Diffstat (limited to 'gnu/packages/fontutils.scm')
-rw-r--r-- | gnu/packages/fontutils.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index 94cdc520ba..53b6355be6 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -536,7 +536,10 @@ definitions.") ("libxml2" ,libxml2) ("pango" ,pango) ("potrace" ,potrace) - ("python" ,python-wrapper) + ;; FIXME: We use Python 2 here because there is a bug in Python + ;; 3.7 that is triggered when Py_Main is called after Py_Init, as + ;; is done by fontforge. This will be fixed in Python 3.7.1. + ("python" ,python-2) ("zlib" ,zlib))) (arguments '(#:phases |