3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/profiling/sysprof/default.nix

82 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv
, lib
2017-12-31 14:52:50 +00:00
, desktop-file-utils
, fetchurl
, gettext
, glib
, gtk3
2021-03-21 01:29:06 +00:00
, json-glib
2017-12-31 14:52:50 +00:00
, itstool
2019-09-09 20:48:51 +01:00
, libdazzle
2017-12-31 14:52:50 +00:00
, libxml2
, meson, ninja
, pango
, pkg-config
2017-12-31 14:52:50 +00:00
, polkit
, shared-mime-info
, systemd
, wrapGAppsHook
, gnome
}:
stdenv.mkDerivation rec {
2017-12-31 14:52:50 +00:00
pname = "sysprof";
2021-03-21 01:29:06 +00:00
version = "3.40.1";
2017-12-31 14:52:50 +00:00
outputs = [ "out" "lib" "dev" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2021-03-21 01:29:06 +00:00
sha256 = "0dvlzjwi3a4g37cpyhqpf41f5hypf0gim1jw9wqlv30flbb00l62";
};
2018-12-14 10:58:32 +00:00
nativeBuildInputs = [
desktop-file-utils
gettext
itstool
libxml2
meson
ninja
pkg-config
2018-12-14 10:58:32 +00:00
shared-mime-info
wrapGAppsHook
gnome.adwaita-icon-theme
2018-12-14 10:58:32 +00:00
];
2021-03-21 01:29:06 +00:00
buildInputs = [
glib
gtk3
json-glib
pango
polkit
systemd
libdazzle
];
2017-12-31 14:52:50 +00:00
mesonFlags = [
"-Dsystemdunitdir=lib/systemd/system"
];
passthru = {
updateScript = gnome.updateScript {
2017-12-31 14:52:50 +00:00
packageName = pname;
versionPolicy = "odd-unstable";
2017-12-31 14:52:50 +00:00
};
};
meta = with lib; {
2017-12-31 14:52:50 +00:00
description = "System-wide profiler for Linux";
homepage = "https://wiki.gnome.org/Apps/Sysprof";
longDescription = ''
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.
'';
2017-12-31 14:52:50 +00:00
license = licenses.gpl2Plus;
maintainers = teams.gnome.members;
2021-03-21 01:29:06 +00:00
platforms = platforms.unix;
};
}