2017-10-11 00:01:42 +01:00
|
|
|
{ stdenv
|
2020-08-12 19:17:51 +01:00
|
|
|
, lib
|
2017-12-31 14:52:50 +00:00
|
|
|
, desktop-file-utils
|
|
|
|
, fetchurl
|
|
|
|
, gettext
|
|
|
|
, glib
|
|
|
|
, gtk3
|
|
|
|
, itstool
|
2019-09-09 20:48:51 +01:00
|
|
|
, libdazzle
|
2017-12-31 14:52:50 +00:00
|
|
|
, libxml2
|
|
|
|
, meson, ninja
|
|
|
|
, pango
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2017-12-31 14:52:50 +00:00
|
|
|
, polkit
|
|
|
|
, shared-mime-info
|
|
|
|
, systemd
|
|
|
|
, wrapGAppsHook
|
|
|
|
, gnome3
|
2017-10-11 00:01:42 +01:00
|
|
|
}:
|
2019-02-17 04:26:49 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-12-31 14:52:50 +00:00
|
|
|
pname = "sysprof";
|
2020-10-24 04:33:04 +01:00
|
|
|
version = "3.38.1";
|
2008-06-07 15:02:17 +01:00
|
|
|
|
2017-12-31 14:52:50 +00:00
|
|
|
outputs = [ "out" "lib" "dev" ];
|
2008-06-07 15:02:17 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-23 12:26:19 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-10-24 04:33:04 +01:00
|
|
|
sha256 = "1z2i9187f2jx456l7h07wy8m9a0p7pj3xiv1aji3snq7rjb1lkj0";
|
2008-06-07 15:02:17 +01:00
|
|
|
};
|
|
|
|
|
2018-12-14 10:58:32 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
desktop-file-utils
|
|
|
|
gettext
|
|
|
|
itstool
|
|
|
|
libxml2
|
|
|
|
meson
|
|
|
|
ninja
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2018-12-14 10:58:32 +00:00
|
|
|
shared-mime-info
|
|
|
|
wrapGAppsHook
|
2019-02-13 21:47:50 +00:00
|
|
|
gnome3.adwaita-icon-theme
|
2018-12-14 10:58:32 +00:00
|
|
|
];
|
2020-08-12 19:17:51 +01:00
|
|
|
buildInputs = [ glib gtk3 pango polkit systemd.dev (lib.getLib systemd) libdazzle ];
|
2008-06-07 15:02:17 +01:00
|
|
|
|
2017-12-31 14:52:50 +00:00
|
|
|
mesonFlags = [
|
|
|
|
"-Dsystemdunitdir=lib/systemd/system"
|
|
|
|
];
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-12-31 14:52:50 +00:00
|
|
|
description = "System-wide profiler for Linux";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://wiki.gnome.org/Apps/Sysprof";
|
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.
|
|
|
|
'';
|
2017-12-31 14:52:50 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2020-04-01 13:40:51 +01:00
|
|
|
maintainers = teams.gnome.members;
|
2019-02-17 04:26:49 +00:00
|
|
|
platforms = platforms.linux;
|
2008-06-07 15:02:17 +01:00
|
|
|
};
|
2010-05-27 20:34:08 +01:00
|
|
|
}
|