1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

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

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;