diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-06-29 09:11:03 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-06-29 21:53:55 +0200 |
commit | 695c501dbed1fdd974861ab36cc702aaccf33d24 (patch) | |
tree | da2a86a265c226eca4b320bee68fb1c0766b253d /gnu/packages/fontutils.scm | |
parent | 8839b6beb163b4bbe11018990d16f927f68e9196 (diff) | |
download | guix-695c501dbed1fdd974861ab36cc702aaccf33d24.tar guix-695c501dbed1fdd974861ab36cc702aaccf33d24.tar.gz |
gnu: freetype: Enable build of freetype-config.
* gnu/packages/fontutils.scm (freetype)[arguments]: Add configure flag to
enable freetype-config.
Diffstat (limited to 'gnu/packages/fontutils.scm')
-rw-r--r-- | gnu/packages/fontutils.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index cf18b55aae..de87f998ae 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2017 Leo Famulari <leo@famulari.name> ;;; Copyright © 2017 Nils Gillmann <ng0@n0.is> ;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -62,6 +63,10 @@ (sha256 (base32 "0kg8w6qyiizlyzh4a8lpzslipcbv96hcg3rqqpnxba8ffbm8g3fv")))) (build-system gnu-build-system) + (arguments + ;; The use of "freetype-config" is deprecated, but other packages still + ;; depend on it. + `(#:configure-flags (list "--enable-freetype-config"))) (native-inputs `(("pkg-config" ,pkg-config))) (propagated-inputs |