me
/
guix
Archived
1
0
Fork 0

gnu: flex: Use the gzip-compressed tarball.

This reverts commit 77e2538eda and fetches the
gzip-compressed tarball.  We do this so that flex-boot0 will not require lzip.

* gnu/packages/flex.scm (flex)[source]: Fetch the '.tar.gz' tarball.
[native-inputs]: Remove lzip.
master
Leo Famulari 2017-05-28 09:49:38 -04:00
parent 77e2538eda
commit 2dca204eb0
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 2 additions and 4 deletions

View File

@ -23,7 +23,6 @@
#:use-module (guix download)
#:use-module (guix build-system gnu)
#:use-module (gnu packages)
#:use-module (gnu packages compression)
#:use-module (gnu packages m4)
#:use-module (gnu packages man)
#:use-module (gnu packages bison)
@ -39,10 +38,10 @@
(uri (string-append
"https://github.com/westes/flex"
"/releases/download/v" version "/"
"flex-" version ".tar.lz"))
"flex-" version ".tar.gz"))
(sha256
(base32
"19sc63m09zamy2qlw5x3sg6wb6hrw96gfl0h87vh6flvsqjg9m3g"))))
"15g9bv236nzi665p9ggqjlfn4dwck5835vf0bbw2cz7h5c1swyp8"))))
(build-system gnu-build-system)
(inputs
(let ((bison-for-tests
@ -68,7 +67,6 @@
;; m4 is not present in PATH when cross-building
(native-inputs
`(("help2man" ,help2man)
("lzip" ,lzip)
("m4" ,m4)))
(propagated-inputs `(("m4" ,m4)))
(home-page "https://github.com/westes/flex")