2012-12-27 01:44:31 +01:00
|
|
|
{ fetchurl, stdenv, binutils
|
2008-06-07 16:02:17 +02:00
|
|
|
, pkgconfig, gtk, glib, pango, libglade }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-12-27 01:44:31 +01:00
|
|
|
name = "sysprof-1.2.0";
|
2008-06-07 16:02:17 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-12-27 01:44:31 +01:00
|
|
|
url = "http://www.sysprof.com/sysprof-1.2.0.tar.gz";
|
|
|
|
sha256 = "1wb4d844rsy8qjg3z5m6rnfm72da4xwzrrkkb1q5r10sq1pkrw5s";
|
2008-06-07 16:02:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ binutils pkgconfig gtk glib pango libglade ];
|
|
|
|
|
|
|
|
meta = {
|
2012-12-27 01:44:31 +01:00
|
|
|
homepage = http://sysprof.com/;
|
2008-06-07 16:02:17 +02:00
|
|
|
description = "Sysprof, a system-wide profiler for Linux";
|
|
|
|
license = "GPLv2+";
|
|
|
|
|
|
|
|
longDescription = ''
|
2012-12-27 01:44:31 +01:00
|
|
|
Sysprof is a sampling CPU profiler for Linux that uses the perf_event_open
|
|
|
|
system call to profile the entire system, not just a single
|
2008-06-07 16:02:17 +02:00
|
|
|
application. Sysprof handles shared libraries and applications
|
|
|
|
do not need to be recompiled. In fact they don't even have to
|
|
|
|
be restarted.
|
|
|
|
'';
|
|
|
|
};
|
2010-05-27 21:34:08 +02:00
|
|
|
}
|