diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-07-07 20:00:21 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-07-07 20:00:21 +0200 |
commit | ff6850490f5ebe2cd0bcb86d7c8a87650e7bb08b (patch) | |
tree | 50240ef5b1f669358e960921eeb4159270913bb5 /gnu/packages/documentation.scm | |
parent | 794c773d0cbc49c1bd7d112d820bb9a7a19f3667 (diff) | |
download | guix-ff6850490f5ebe2cd0bcb86d7c8a87650e7bb08b.tar guix-ff6850490f5ebe2cd0bcb86d7c8a87650e7bb08b.tar.gz |
gnu: doxygen: Don't build against special Flex variant.
* gnu/packages/documentation.scm (doxygen)[native-inputs]: Change FLEX-2.6.1
to FLEX.
Diffstat (limited to 'gnu/packages/documentation.scm')
-rw-r--r-- | gnu/packages/documentation.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/documentation.scm b/gnu/packages/documentation.scm index 6ce7827391..8e7ecda956 100644 --- a/gnu/packages/documentation.scm +++ b/gnu/packages/documentation.scm @@ -139,7 +139,7 @@ markup) can be customized and extended by the user.") (build-system cmake-build-system) (native-inputs `(("bison" ,bison) - ("flex" ,flex-2.6.1) ; sefaults with 2.6.4 + ("flex" ,flex) ("libxml2" ,libxml2) ; provides xmllint for the tests ("python" ,python-2))) ; for creating the documentation (inputs |