From 6ea8f649e62e00fb1d29c87835a6ab1b125ab9c4 Mon Sep 17 00:00:00 2001 From: Timofei Kushnir Date: Mon, 12 Oct 2015 13:05:04 +0300 Subject: Create kernel headers dependency to correctly compile 'operf' util. --- pkgs/development/tools/profiling/oprofile/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'pkgs/development/tools/profiling/oprofile') diff --git a/pkgs/development/tools/profiling/oprofile/default.nix b/pkgs/development/tools/profiling/oprofile/default.nix index 561fea6ef7b09..4c4d8f87d331e 100644 --- a/pkgs/development/tools/profiling/oprofile/default.nix +++ b/pkgs/development/tools/profiling/oprofile/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, binutils, popt, zlib, pkgconfig +{ stdenv, fetchurl, binutils, popt, zlib, pkgconfig, linuxPackages , withGUI ? false , qt4 ? null}: # libX11 is needed because the Qt build stuff automatically adds `-lX11'. @@ -12,10 +12,14 @@ stdenv.mkDerivation rec { sha256 = "0nn4wfvwy4nii25y6lwlrnzx9ah4nz0r93yk7hswiy6wxjs10wc4"; }; - buildInputs = [ binutils zlib popt pkgconfig ] + buildInputs = [ binutils zlib popt pkgconfig linuxPackages.kernelHeaders ] ++ stdenv.lib.optionals withGUI [ qt4 ]; configureFlags = [ + "--build ${stdenv.system}" + "--host ${stdenv.system}" + "--target ${stdenv.system}" + "--with-kernel=${linuxPackages.kernelHeaders}" "--disable-shared" # needed because only the static libbfd is available ] ++ stdenv.lib.optional withGUI "--with-qt-dir=${qt4} --enable-gui=qt4"; -- cgit 1.4.1