diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-08-24 10:37:33 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-08-24 18:15:02 +0300 |
commit | 84898ca224328ac62edab3e08e010c8c304006b3 (patch) | |
tree | 73624038e25bb3d9ed255c53c18917e27daf4bc3 | |
parent | c76e8f54df6ea9c6ef0dde02da241a5cdf6156a4 (diff) | |
download | guix-84898ca224328ac62edab3e08e010c8c304006b3.tar guix-84898ca224328ac62edab3e08e010c8c304006b3.tar.gz |
gnu: efl: Enable harfbuzz support.
* gnu/packages/enlightenment.scm (efl)[arguments]: Add '--enable-harfbuzz'.
[inputs]: Move harfbuzz ...
[propagated-inputs]: ... here.
-rw-r--r-- | gnu/packages/enlightenment.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm index 7e4378887b..32e3019438 100644 --- a/gnu/packages/enlightenment.scm +++ b/gnu/packages/enlightenment.scm @@ -72,7 +72,6 @@ ("giflib" ,giflib) ("gstreamer" ,gstreamer) ("gst-plugins-base" ,gst-plugins-base) - ("harfbuzz" ,harfbuzz) ("libexif" ,libexif) ("libjpeg" ,libjpeg) ("librsvg" ,librsvg) @@ -107,6 +106,7 @@ ("freetype" ,freetype) ; evas.pc ("fribidi" ,fribidi) ; evas.pc ("glib" ,glib) ; ecore.pc + ("harfbuzz" ,harfbuzz) ; evas.pc, evas-cxx.pc ("libpng" ,libpng) ; evas.pc, evas-cxx.pc ("libsndfile" ,libsndfile) ; ecore-audio.pc, ecore-audio-cxx.pc ("luajit" ,luajit) ; evas.pc, edje.pc @@ -116,7 +116,8 @@ ("zlib" ,zlib))) ; eet.pc (arguments `(#:configure-flags '("--disable-silent-rules" - "--enable-liblz4") + "--enable-liblz4" + "--enable-harfbuzz") #:phases (modify-phases %standard-phases (add-before 'configure 'patch-config-files |