summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-05-22 17:32:23 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-05-22 17:32:23 +0000
commit8805bf1ba5fd78c031d9948c0ac2bb30aaaa1afb (patch)
tree30c9033e2dddc50d6391794a1514b86de0c31f64 /pkgs
parent5c393a469bfb7e7999f898776b375f696d2a76a6 (diff)
'perf' wants flex and bison, since linux 3.4.
svn path=/nixpkgs/trunk/; revision=34210
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/kernel/perf.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/perf.nix b/pkgs/os-specific/linux/kernel/perf.nix
index ba32362b6e8b..dc49f10c177d 100644
--- a/pkgs/os-specific/linux/kernel/perf.nix
+++ b/pkgs/os-specific/linux/kernel/perf.nix
@@ -1,5 +1,5 @@
{ stdenv, kernel, elfutils, python, perl, newt, slang, asciidoc, xmlto
-, docbook_xsl, docbook_xml_dtd_45, libxslt }:
+, docbook_xsl, docbook_xml_dtd_45, libxslt, flex, bison }:
stdenv.mkDerivation {
name = "perf-linux-${kernel.version}";
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
'';
# perf refers both to newt and slang
- buildNativeInputs = [ asciidoc xmlto docbook_xsl docbook_xml_dtd_45 libxslt ];
+ buildNativeInputs = [ asciidoc xmlto docbook_xsl docbook_xml_dtd_45 libxslt flex bison ];
buildInputs = [ elfutils python perl newt slang ];
installFlags = "install install-man ASCIIDOC8=1";