rhelling pushed a commit to branch core-updates
in repository guix.
commit 04842543e8231d99aad4c8ec232f41272886fbd1
Author: Rutger Helling <[email protected]>
Date: Fri Jul 19 12:40:03 2019 +0200
gnu: fbreader: Build with GCC 5.
* gnu/packages/ebook.scm (fbreader)[native-inputs]: Add GCC-5.
---
gnu/packages/ebook.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm
index cf424f2..5062515 100644
--- a/gnu/packages/ebook.scm
+++ b/gnu/packages/ebook.scm
@@ -37,6 +37,7 @@
#:use-module (gnu packages fontutils)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages fribidi)
+ #:use-module (gnu packages gcc)
#:use-module (gnu packages gtk)
#:use-module (gnu packages gnome)
#:use-module (gnu packages glib)
@@ -294,7 +295,8 @@ designed to be used in a generic text renderer.")
("sqlite" ,sqlite)
("zlib" ,zlib)))
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ `(("gcc" ,gcc-5)
+ ("pkg-config" ,pkg-config)))
(arguments
`(#:tests? #f ; No tests exist.
#:make-flags `("CC=gcc" "TARGET_ARCH=desktop" "UI_TYPE=gtk"