'perf' wants flex and bison, since linux 3.4.
svn path=/nixpkgs/trunk/; revision=34210
This commit is contained in:
parent
5c393a469b
commit
8805bf1ba5
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue