2012-12-27 00:44:31 +00:00
|
|
|
{ fetchurl, stdenv, binutils
|
2008-06-07 15:02:17 +01:00
|
|
|
, pkgconfig, gtk, glib, pango, libglade }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-12-27 00:44:31 +00:00
|
|
|
name = "sysprof-1.2.0";
|
2008-06-07 15:02:17 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-12-27 00:44:31 +00:00
|
|
|
url = "http://www.sysprof.com/sysprof-1.2.0.tar.gz";
|
|
|
|
sha256 = "1wb4d844rsy8qjg3z5m6rnfm72da4xwzrrkkb1q5r10sq1pkrw5s";
|
2008-06-07 15:02:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ binutils pkgconfig gtk glib pango libglade ];
|
|
|
|
|
|
|
|
meta = {
|
2012-12-27 00:44:31 +00:00
|
|
|
homepage = http://sysprof.com/;
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "System-wide profiler for Linux";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2008-06-07 15:02:17 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
2012-12-27 00:44:31 +00: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 15:02:17 +01: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 20:34:08 +01:00
|
|
|
}
|