2017-09-10 12:01:40 +01:00
|
|
|
{ stdenv, fetchurl, binutils, popt, zlib, pkgconfig, linuxHeaders, coreutils
|
2016-03-30 16:51:12 +01:00
|
|
|
, libiberty_static, withGUI ? false , qt4 ? null}:
|
2010-05-05 20:48:18 +01:00
|
|
|
|
|
|
|
# libX11 is needed because the Qt build stuff automatically adds `-lX11'.
|
2012-03-03 12:15:58 +00:00
|
|
|
assert withGUI -> qt4 != null;
|
2008-06-04 22:23:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-09-10 10:31:11 +01:00
|
|
|
name = "oprofile-1.2.0";
|
2008-06-04 22:23:30 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/oprofile/${name}.tar.gz";
|
2017-09-10 10:31:11 +01:00
|
|
|
sha256 = "0zd5ih6gmm1pkqavd9laa93iff7qv5jkbfjznhlyxl5p826gk5gb";
|
2008-06-04 22:23:30 +01:00
|
|
|
};
|
|
|
|
|
2017-09-10 12:01:40 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace opjitconv/opjitconv.c \
|
|
|
|
--replace "/bin/rm" "${coreutils}/bin/rm" \
|
|
|
|
--replace "/bin/cp" "${coreutils}/bin/cp"
|
|
|
|
'';
|
|
|
|
|
2016-03-30 16:51:12 +01:00
|
|
|
buildInputs = [ binutils zlib popt pkgconfig linuxHeaders libiberty_static ]
|
2012-03-03 12:15:58 +00:00
|
|
|
++ stdenv.lib.optionals withGUI [ qt4 ];
|
2008-06-04 22:23:30 +01:00
|
|
|
|
2013-02-23 22:49:48 +00:00
|
|
|
configureFlags = [
|
2015-10-12 15:50:13 +01:00
|
|
|
"--with-kernel=${linuxHeaders}"
|
2010-05-05 20:48:18 +01:00
|
|
|
"--disable-shared" # needed because only the static libbfd is available
|
|
|
|
]
|
2012-03-03 12:15:58 +00:00
|
|
|
++ stdenv.lib.optional withGUI "--with-qt-dir=${qt4} --enable-gui=qt4";
|
2008-06-04 22:23:30 +01:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "System-wide profiler for Linux";
|
2008-06-04 22:23:30 +01:00
|
|
|
longDescription = ''
|
|
|
|
OProfile is a system-wide profiler for Linux systems, capable of
|
|
|
|
profiling all running code at low overhead. It consists of a
|
|
|
|
kernel driver and a daemon for collecting sample data, and
|
|
|
|
several post-profiling tools for turning data into information.
|
|
|
|
|
|
|
|
OProfile leverages the hardware performance counters of the CPU
|
|
|
|
to enable profiling of a wide variety of interesting statistics,
|
|
|
|
which can also be used for basic time-spent profiling. All code
|
|
|
|
is profiled: hardware and software interrupt handlers, kernel
|
|
|
|
modules, the kernel, shared libraries, and applications.
|
|
|
|
'';
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2008-06-04 22:23:30 +01:00
|
|
|
homepage = http://oprofile.sourceforge.net/;
|
2010-05-05 20:48:18 +01:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = [ ];
|
2008-06-04 22:23:30 +01:00
|
|
|
};
|
2009-03-30 21:22:54 +01:00
|
|
|
}
|