2014-08-08 16:58:34 +01:00
|
|
|
{ lib, stdenv, kernel, elfutils, python, perl, newt, slang, asciidoc, xmlto
|
2015-03-11 17:14:57 +00:00
|
|
|
, docbook_xsl, docbook_xml_dtd_45, libxslt, flex, bison, pkgconfig, libunwind, binutils
|
2016-10-06 01:59:44 +01:00
|
|
|
, libiberty, libaudit
|
2016-09-13 18:42:55 +01:00
|
|
|
, zlib, withGtk ? false, gtk2 ? null }:
|
2012-06-27 21:23:15 +01:00
|
|
|
|
2014-08-08 16:58:34 +01:00
|
|
|
with lib;
|
|
|
|
|
2016-09-13 18:42:55 +01:00
|
|
|
assert withGtk -> gtk2 != null;
|
2014-08-08 16:58:34 +01:00
|
|
|
assert versionAtLeast kernel.version "3.12";
|
2012-01-05 21:24:51 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-01-05 01:57:21 +00:00
|
|
|
name = "perf-linux-${kernel.version}";
|
2012-01-05 21:24:51 +00:00
|
|
|
|
2014-01-05 01:57:21 +00: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
|
2014-02-07 21:53:55 +00:00
|
|
|
${optionalString (versionOlder kernel.version "3.13") "patch -p1 < ${./perf.diff}"}
|
2013-07-09 19:53:45 +01:00
|
|
|
[ -f bash_completion ] && sed -i 's,^have perf,_have perf,' bash_completion
|
2012-01-06 16:45:14 +00:00
|
|
|
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
|
2015-03-11 17:14:57 +00:00
|
|
|
# binutils is required for libbfd.
|
2016-07-21 16:26:26 +01:00
|
|
|
nativeBuildInputs = [ asciidoc xmlto docbook_xsl docbook_xml_dtd_45 libxslt
|
2016-10-06 01:59:44 +01:00
|
|
|
flex bison libiberty libaudit ];
|
2016-08-24 20:19:02 +01:00
|
|
|
buildInputs = [ elfutils python perl newt slang pkgconfig libunwind binutils zlib ] ++
|
2016-09-13 18:42:55 +01:00
|
|
|
stdenv.lib.optional withGtk gtk2;
|
2012-01-06 17:45:53 +00:00
|
|
|
|
2015-09-03 21:32:36 +01:00
|
|
|
# Note: we don't add elfutils to buildInputs, since it provides a
|
|
|
|
# bad `ld' and other stuff.
|
2017-01-19 01:24:04 +00:00
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
|
|
"-Wno-error=cpp" "-Wno-error=bool-compare" "-Wno-error=deprecated-declarations"
|
2017-02-03 11:37:40 +00:00
|
|
|
]
|
|
|
|
# gcc before 6 doesn't know these options
|
|
|
|
++ stdenv.lib.optionals (hasPrefix "gcc-6" stdenv.cc.cc) [
|
|
|
|
"-Wno-error=unused-const-variable" "-Wno-error=misleading-indentation"
|
|
|
|
];
|
2014-11-26 22:37:50 +00:00
|
|
|
|
2012-01-06 17:45:53 +00:00
|
|
|
installFlags = "install install-man ASCIIDOC8=1";
|
2012-01-06 16:45:14 +00:00
|
|
|
|
|
|
|
crossAttrs = {
|
|
|
|
/* I don't want cross-python or cross-perl -
|
|
|
|
I don't know if cross-python even works */
|
2012-12-28 18:08:19 +00:00
|
|
|
propagatedBuildInputs = [ elfutils.crossDrv newt.crossDrv ];
|
2012-01-06 16:45:14 +00:00
|
|
|
makeFlags = "CROSS_COMPILE=${stdenv.cross.config}-";
|
2012-12-28 18:08:19 +00:00
|
|
|
elfutils = elfutils.crossDrv;
|
2014-01-05 01:57:21 +00:00
|
|
|
inherit (kernel.crossDrv) src patches;
|
2012-01-06 16:45:14 +00:00
|
|
|
};
|
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;
|
|
|
|
};
|
|
|
|
}
|