Create kernel headers dependency to correctly compile 'operf' util.

This commit is contained in:
Timofei Kushnir 2015-10-12 13:05:04 +03:00
parent de01537b34
commit 6ea8f649e6

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, binutils, popt, zlib, pkgconfig { stdenv, fetchurl, binutils, popt, zlib, pkgconfig, linuxPackages
, withGUI ? false , qt4 ? null}: , withGUI ? false , qt4 ? null}:
# libX11 is needed because the Qt build stuff automatically adds `-lX11'. # libX11 is needed because the Qt build stuff automatically adds `-lX11'.
@ -12,10 +12,14 @@ stdenv.mkDerivation rec {
sha256 = "0nn4wfvwy4nii25y6lwlrnzx9ah4nz0r93yk7hswiy6wxjs10wc4"; sha256 = "0nn4wfvwy4nii25y6lwlrnzx9ah4nz0r93yk7hswiy6wxjs10wc4";
}; };
buildInputs = [ binutils zlib popt pkgconfig ] buildInputs = [ binutils zlib popt pkgconfig linuxPackages.kernelHeaders ]
++ stdenv.lib.optionals withGUI [ qt4 ]; ++ stdenv.lib.optionals withGUI [ qt4 ];
configureFlags = [ configureFlags = [
"--build ${stdenv.system}"
"--host ${stdenv.system}"
"--target ${stdenv.system}"
"--with-kernel=${linuxPackages.kernelHeaders}"
"--disable-shared" # needed because only the static libbfd is available "--disable-shared" # needed because only the static libbfd is available
] ]
++ stdenv.lib.optional withGUI "--with-qt-dir=${qt4} --enable-gui=qt4"; ++ stdenv.lib.optional withGUI "--with-qt-dir=${qt4} --enable-gui=qt4";