From 1abfb4d4e4ac9a795fbb64ae77c0052c706c2f84 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 May 2020 22:16:13 +0200 Subject: gnu: gnubik: Fix build failure. * gnu/packages/games.scm (gnubik)[arguments]: New field. --- gnu/packages/games.scm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'gnu/packages/games.scm') diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index b927ef4ab5..e9e408c11a 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -27,7 +27,7 @@ ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice ;;; Copyright © 2017, 2019 nee ;;; Copyright © 2017 Clément Lassieur -;;; Copyright © 2017, 2019 Marius Bakke +;;; Copyright © 2017, 2019, 2020 Marius Bakke ;;; Copyright © 2017, 2018 Rutger Helling ;;; Copyright © 2017 Roel Janssen ;;; Copyright © 2017, 2018, 2019, 2020 Nicolas Goaziou @@ -1252,6 +1252,16 @@ also features an attractive, 3D representation of the playing board.") (base32 "1vlf924mq8hg93bsjj0rzvs0crc6psmlxyc6zn0fr7msnmpx6gib")))) (build-system gnu-build-system) + (arguments + '(#:phases (modify-phases %standard-phases + (add-after 'unpack 'skip-gtk-update-icon-cache + (lambda _ + ;; Do not attempt to run 'gtk-update-icon-cache', which is + ;; unnecessary and causes a needless dependency on glib. + (substitute* "Makefile.in" + (("gtk-update-icon-cache") + "true")) + #t))))) (inputs `(("gtk+" ,gtk+-2) ("mesa" ,mesa) ("glu" ,glu) -- cgit v1.2.3