2012-01-06 17:45:53 +00:00
|
|
|
{ stdenv, kernel, elfutils, python, perl, newt, slang, asciidoc, xmlto
|
2012-06-27 21:23:15 +01:00
|
|
|
, docbook_xsl, docbook_xml_dtd_45, libxslt, flex, bison, pkgconfig
|
|
|
|
, withGtk ? false, gtk ? null }:
|
|
|
|
|
|
|
|
assert withGtk -> gtk != null;
|
2012-01-05 21:24:51 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "perf-linux-${kernel.version}";
|
|
|
|
|
2012-08-10 09:03:53 +01:00
|
|
|
inherit (kernel) src patches;
|
2012-01-05 21:24:51 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
cd tools/perf
|
2012-01-06 16:45:14 +00:00
|
|
|
sed -i s,/usr/include/elfutils,$elfutils/include/elfutils, Makefile
|
|
|
|
export makeFlags="DESTDIR=$out $makeFlags"
|
2012-01-05 21:24:51 +00:00
|
|
|
'';
|
|
|
|
|
2012-01-06 17:04:32 +00:00
|
|
|
# perf refers both to newt and slang
|
2012-05-22 18:32:23 +01:00
|
|
|
buildNativeInputs = [ asciidoc xmlto docbook_xsl docbook_xml_dtd_45 libxslt flex bison ];
|
2012-06-27 21:23:15 +01:00
|
|
|
buildInputs = [ elfutils python perl newt slang pkgconfig] ++
|
|
|
|
stdenv.lib.optional withGtk gtk;
|
2012-01-06 17:45:53 +00:00
|
|
|
|
|
|
|
installFlags = "install install-man ASCIIDOC8=1";
|
2012-01-06 16:45:14 +00:00
|
|
|
|
|
|
|
inherit elfutils;
|
|
|
|
|
|
|
|
crossAttrs = {
|
|
|
|
/* I don't want cross-python or cross-perl -
|
|
|
|
I don't know if cross-python even works */
|
|
|
|
propagatedBuildInputs = [ elfutils.hostDrv newt.hostDrv ];
|
|
|
|
makeFlags = "CROSS_COMPILE=${stdenv.cross.config}-";
|
|
|
|
elfutils = elfutils.hostDrv;
|
|
|
|
};
|
2012-01-05 21:24:51 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = https://perf.wiki.kernel.org/;
|
|
|
|
description = "Linux tools to profile with performance counters";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|