diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-01-21 14:18:44 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-01-21 15:16:10 +0100 |
commit | d7ece67af0e4d9b1a6a75cd8586ef726cc060193 (patch) | |
tree | 028e2423eda8e6e0eda71382234fc75f240c0704 /gnu/packages/linux.scm | |
parent | 6c030d1037f11483a001391e8779bf627dec6735 (diff) | |
download | guix-d7ece67af0e4d9b1a6a75cd8586ef726cc060193.tar guix-d7ece67af0e4d9b1a6a75cd8586ef726cc060193.tar.gz |
gnu: perf: Build the documentation.
* gnu/packages/linux.scm (perf)[inputs]: Uncomment documentation inputs.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 3224b4b100..5859216245 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -49,6 +49,8 @@ #:use-module (gnu packages rrdtool) #:use-module (gnu packages elf) #:use-module (gnu packages gtk) + #:use-module (gnu packages docbook) + #:use-module (gnu packages asciidoc) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix utils) @@ -1722,13 +1724,13 @@ in a digital read-out.") ("python" ,python-2) ;'perf' links against libpython ("elfutils" ,elfutils) - ;; FIXME: Documentation. - ;; ("libxslt" ,libxslt) - ;; ("docbook-xml" ,docbook-xml) - ;; ("docbook-xsl" ,docbook-xsl) - ;; ("xmlto" ,xmlto) - ;; ("asciidoc" ,asciidoc) - )) + ;; Documentation. + ("libxml2" ,libxml2) ;for $XML_CATALOG_FILES + ("libxslt" ,libxslt) + ("docbook-xml" ,docbook-xml) + ("docbook-xsl" ,docbook-xsl) + ("xmlto" ,xmlto) + ("asciidoc" ,asciidoc))) (home-page "https://perf.wiki.kernel.org/") (synopsis "Linux profiling with performance counters") (description |