Adding perf manual pages.

I copied the docbook inputs from awesome. I don't understand them.


svn path=/nixpkgs/trunk/; revision=31355
This commit is contained in:
Lluís Batlle i Rossell 2012-01-06 17:45:53 +00:00
parent b76352800e
commit 75d5ffe7ac
1 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,5 @@
{ stdenv, kernel, elfutils, python, perl, newt, slang }:
{ stdenv, kernel, elfutils, python, perl, newt, slang, asciidoc, xmlto
, docbook_xsl, docbook_xml_dtd_45, libxslt }:
stdenv.mkDerivation {
name = "perf-linux-${kernel.version}";
@ -12,7 +13,10 @@ stdenv.mkDerivation {
'';
# perf refers both to newt and slang
buildInputs = [ elfutils python perl newt slang ];
buildInputs = [ elfutils python perl newt slang asciidoc xmlto
docbook_xsl docbook_xml_dtd_45 libxslt ];
installFlags = "install install-man ASCIIDOC8=1";
inherit elfutils;