mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
7b2e2ddf29
https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/compare/47.beta...47.0 Changelog-reviewed-by: Bobby Rong <rjl931189261@126.com>
81 lines
1.4 KiB
Nix
81 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, gettext
|
|
, fetchurl
|
|
, pkg-config
|
|
, gtkmm4
|
|
, libxml2
|
|
, bash
|
|
, gtk4
|
|
, libadwaita
|
|
, glib
|
|
, wrapGAppsHook4
|
|
, meson
|
|
, ninja
|
|
, gsettings-desktop-schemas
|
|
, itstool
|
|
, gnome
|
|
, adwaita-icon-theme
|
|
, librsvg
|
|
, gdk-pixbuf
|
|
, libgtop
|
|
, systemd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-system-monitor";
|
|
version = "47.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-system-monitor/${lib.versions.major version}/gnome-system-monitor-${version}.tar.xz";
|
|
hash = "sha256-7ee5JetxTYs8K/v3QFobcUSU/kfgLwrwj1g3s+JWVH8=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix pkexec detection on NixOS.
|
|
./fix-paths.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
gettext
|
|
itstool
|
|
wrapGAppsHook4
|
|
meson
|
|
ninja
|
|
glib
|
|
];
|
|
|
|
buildInputs = [
|
|
bash
|
|
gtk4
|
|
libadwaita
|
|
glib
|
|
libxml2
|
|
gtkmm4
|
|
libgtop
|
|
gdk-pixbuf
|
|
adwaita-icon-theme
|
|
librsvg
|
|
gsettings-desktop-schemas
|
|
systemd
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = "gnome-system-monitor";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://apps.gnome.org/SystemMonitor/";
|
|
description = "System Monitor shows you what programs are running and how much processor time, memory, and disk space are being used";
|
|
mainProgram = "gnome-system-monitor";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|