me
/
guix
Archived
1
0
Fork 0

distro: flex: Add dependency on Indent.

* distro/packages/flex.scm (flex): Add Indent as input.
master
Andreas Enge 2013-01-17 21:20:59 +01:00
parent c1e628f6ce
commit dd9e87e185
1 changed files with 4 additions and 2 deletions

View File

@ -23,7 +23,8 @@
#:use-module (guix build-system gnu)
#:use-module (distro)
#:use-module (distro packages m4)
#:use-module (distro packages bison))
#:use-module (distro packages bison)
#:use-module (distro packages indent))
(define-public flex
(package
@ -40,7 +41,8 @@
(arguments
'(#:patches (list (assoc-ref %build-inputs "patch/bison-tests"))))
(inputs `(("patch/bison-tests" ,(search-patch "flex-bison-tests.patch"))
("bison" ,bison)))
("bison" ,bison)
("indent" ,indent)))
(propagated-inputs `(("m4" ,m4)))
(home-page "http://flex.sourceforge.net/")
(synopsis "A fast lexical analyser generator")