gnu: grub: Fix build failure with recent flex.

* gnu/packages/flex.scm (flex-2.6.1): New variable.
* gnu/packages/bootloaders.scm (grub)[native-inputs]: Use flex-2.6.1.
master
Leo Famulari 2017-03-07 22:38:35 -05:00
parent 851ff8a5c5
commit 0a3aca47d9
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
2 changed files with 17 additions and 1 deletions

View File

@ -118,7 +118,10 @@
(native-inputs
`(("unifont" ,unifont)
("bison" ,bison)
("flex" ,flex)
;; Due to a bug in flex >= 2.6.2, GRUB must be built with an older flex:
;; <http://lists.gnu.org/archive/html/grub-devel/2017-02/msg00133.html>
;; TODO Try building with flex > 2.6.4.
("flex" ,flex-2.6.1)
("texinfo" ,texinfo)
("help2man" ,help2man)

View File

@ -85,3 +85,16 @@ regular expressions for each rule. Whenever it finds a match, it
executes the corresponding C code.")
(license (non-copyleft "file://COPYING"
"See COPYING in the distribution."))))
(define-public flex-2.6.1
(package
(inherit flex)
(version "2.6.1")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/westes/flex"
"/releases/download/v" version "/"
"flex-" version ".tar.xz"))
(sha256
(base32
"0gqhk4vkwy4gl9xbpgkljph8c0a5kpijz6wd0p5r9q202qn42yic"))))))