Files
nixpkgs/pkgs/development/tools/profiling/sysprof/default.nix
T

29 lines
878 B
Nix
Raw Normal View History

2012-12-27 00:44:31 +00:00
{ fetchurl, stdenv, binutils
, pkgconfig, gtk2, glib, pango, libglade }:
stdenv.mkDerivation rec {
2012-12-27 00:44:31 +00:00
name = "sysprof-1.2.0";
src = fetchurl {
2012-12-27 00:44:31 +00:00
url = "http://www.sysprof.com/sysprof-1.2.0.tar.gz";
sha256 = "1wb4d844rsy8qjg3z5m6rnfm72da4xwzrrkkb1q5r10sq1pkrw5s";
};
buildInputs = [ binutils pkgconfig gtk2 glib pango libglade ];
meta = {
2012-12-27 00:44:31 +00:00
homepage = http://sysprof.com/;
2014-08-24 16:21:08 +02:00
description = "System-wide profiler for Linux";
license = stdenv.lib.licenses.gpl2Plus;
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
application. Sysprof handles shared libraries and applications
do not need to be recompiled. In fact they don't even have to
be restarted.
'';
2016-08-02 20:50:55 +03:00
platforms = stdenv.lib.platforms.linux;
};
2010-05-27 19:34:08 +00:00
}