diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-05-10 22:29:09 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-05-10 22:29:09 +0200 |
commit | fe5a4f579b806a3a7a3e46daf1939f1181fef811 (patch) | |
tree | e80738588387b89e1067baac61740fecac58a3f8 /gnu/packages/games.scm | |
parent | 6266a48db13f2169e3167564e143b8d4b13c0008 (diff) | |
download | guix-fe5a4f579b806a3a7a3e46daf1939f1181fef811.tar.gz |
gnu: gnubg: Build with Pango 1.42.
* gnu/packages/games.scm (gnubg)[inputs]: Add PANGO-1.42.
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index e9e408c11a..c6093f2b7c 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -1200,7 +1200,11 @@ such as chess or stockfish.") (base32 "11xwhcli1h12k6rnhhyq4jphzrhfik7i8ah3k32pqw803460n6yf")))) (build-system gnu-build-system) - (inputs `(("glib" ,glib) + (inputs `(;; XXX: Build with an older Pango for 'pango_font_get_hb_font' and + ;; 'pango_coverage_get_type'. Try removing this for versions > 1.06.002. + ("pango" ,pango-1.42) + + ("glib" ,glib) ("readline" ,readline) ("gtk+" ,gtk+-2) ("mesa" ,mesa) |