summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-01-06 17:45:53 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-01-06 17:45:53 +0000
commit75d5ffe7ac4c7fa684e52bbfc73b71f2802a2a8b (patch)
treebd00460b6c41daf3f72b671707709e7e4241430e /pkgs/os-specific
parentb76352800ec85580936cb07a9c27a6fc3e105cfa (diff)
downloadnixlib-75d5ffe7ac4c7fa684e52bbfc73b71f2802a2a8b.tar
nixlib-75d5ffe7ac4c7fa684e52bbfc73b71f2802a2a8b.tar.gz
nixlib-75d5ffe7ac4c7fa684e52bbfc73b71f2802a2a8b.tar.bz2
nixlib-75d5ffe7ac4c7fa684e52bbfc73b71f2802a2a8b.tar.lz
nixlib-75d5ffe7ac4c7fa684e52bbfc73b71f2802a2a8b.tar.xz
nixlib-75d5ffe7ac4c7fa684e52bbfc73b71f2802a2a8b.tar.zst
nixlib-75d5ffe7ac4c7fa684e52bbfc73b71f2802a2a8b.zip
Adding perf manual pages.
I copied the docbook inputs from awesome. I don't understand them.


svn path=/nixpkgs/trunk/; revision=31355
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/perf.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/perf.nix b/pkgs/os-specific/linux/kernel/perf.nix
index 40b7638b911f..e13b7266b02f 100644
--- a/pkgs/os-specific/linux/kernel/perf.nix
+++ b/pkgs/os-specific/linux/kernel/perf.nix
@@ -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;