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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

97 lines
1.9 KiB
Nix
Raw Normal View History

2021-10-27 14:31:39 +00:00
{ 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
2021-06-23 18:22:04 +00:00
, libwnck
2019-12-18 20:50:19 +00:00
, libgee
, libgtop
2021-10-27 14:31:39 +00:00
, libhandy
, sassc
, udisks2
2019-12-18 20:50:19 +00:00
, wrapGAppsHook
2022-01-17 09:59:15 +00:00
, libX11
, libXext
, libXNVCtrl
2019-12-18 20:50:19 +00:00
}:
stdenv.mkDerivation rec {
pname = "monitor";
2022-01-17 09:59:15 +00:00
version = "0.12.0";
2019-12-18 20:50:19 +00:00
src = fetchFromGitHub {
owner = "stsdc";
repo = "monitor";
rev = version;
2022-01-17 09:59:15 +00:00
sha256 = "1fv98yz9393ddp0k96bwbgccy6x9dmmg8g1pjd3xs6m4c1bnvfc7";
fetchSubmodules = true;
2019-12-18 20:50:19 +00:00
};
nativeBuildInputs = [
gettext
meson
ninja
vala
pkg-config
python3
wrapGAppsHook
];
buildInputs = [
glib
gtk3
pantheon.granite
pantheon.wingpanel
libgee
libgtop
2021-10-27 14:31:39 +00:00
libhandy
2021-06-23 18:22:04 +00:00
libwnck
2021-10-27 14:31:39 +00:00
sassc
udisks2
2022-01-17 09:59:15 +00:00
libX11
libXext
libXNVCtrl
2019-12-18 20:50:19 +00:00
];
2022-01-17 09:59:15 +00:00
# Force link against Xext, otherwise build fails with:
# ld: /nix/store/...-libXNVCtrl-495.46/lib/libXNVCtrl.a(NVCtrl.o): undefined reference to symbol 'XextAddDisplay'
# ld: /nix/store/...-libXext-1.3.4/lib/libXext.so.6: error adding symbols: DSO missing from command line
# https://github.com/stsdc/monitor/issues/292
NIX_LDFLAGS = "-lXext";
mesonFlags = [ "-Dindicator-wingpanel=enabled" ];
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";
maintainers = with maintainers; [ xiorcale ] ++ teams.pantheon.members;
2019-12-18 20:50:19 +00:00
platforms = platforms.linux;
license = licenses.gpl3;
2021-10-27 14:31:39 +00:00
mainProgram = "com.github.stsdc.monitor";
2019-12-18 20:50:19 +00:00
};
}