nixpkgs/pkgs/applications/system/monitor/default.nix

77 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
2019-12-18 20:50:19 +00:00
, fetchFromGitHub
, nix-update-script
2019-12-18 20:50:19 +00:00
, meson
, ninja
, vala
, pkg-config
, pantheon
, python3
, gettext
, glib
, gtk3
, bamf
2021-06-23 18:22:04 +00:00
, libwnck
2019-12-18 20:50:19 +00:00
, libgee
, libgtop
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "monitor";
2020-07-22 12:31:25 +00:00
version = "0.8.1";
2019-12-18 20:50:19 +00:00
src = fetchFromGitHub {
owner = "stsdc";
repo = "monitor";
rev = version;
2020-07-22 12:31:25 +00:00
sha256 = "111g2f3y5lmz91m755jz0x8yx5cx9ym484gch8wcv80dmr7ilb1y";
fetchSubmodules = true;
2019-12-18 20:50:19 +00:00
};
nativeBuildInputs = [
gettext
meson
ninja
vala
pkg-config
python3
wrapGAppsHook
];
buildInputs = [
bamf
glib
gtk3
pantheon.granite
pantheon.wingpanel
libgee
libgtop
2021-06-23 18:22:04 +00:00
libwnck
2019-12-18 20:50:19 +00:00
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
passthru = {
updateScript = nix-update-script {
2019-12-18 20:50:19 +00:00
attrPath = pname;
};
};
meta = with lib; {
2019-12-18 20:50:19 +00:00
description = "Manage processes and monitor system resources";
longDescription = ''
Manage processes and monitor system resources.
To use the wingpanel indicator in this application, see the Pantheon
section in the NixOS manual.
'';
2019-12-18 20:50:19 +00:00
homepage = "https://github.com/stsdc/monitor";
2020-05-08 07:08:53 +00:00
maintainers = with maintainers; [ xiorcale ] ++ pantheon.maintainers;
2019-12-18 20:50:19 +00:00
platforms = platforms.linux;
license = licenses.gpl3;
};
}