nixpkgs/pkgs/applications/misc/phwmon/default.nix

41 lines
1,003 B
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{ lib, stdenv, fetchFromGitLab, pythonPackages }:
2016-05-18 10:49:01 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "phwmon";
2017-05-09 18:47:49 +00:00
version = "2017-04-10";
2016-05-18 10:49:01 +00:00
src = fetchFromGitLab {
owner = "o9000";
repo = "phwmon";
2017-05-09 18:47:49 +00:00
rev = "b162e53dccc4adf8f11f49408d05fd85d9c6c909";
sha256 = "1hqmsq66y8bqkpvszw84jyk8haxq3cjnz105hlkmp7786vfmkisq";
2016-05-18 10:49:01 +00:00
};
nativeBuildInputs = [ pythonPackages.wrapPython ];
buildInputs = [ pythonPackages.pygtk pythonPackages.psutil ];
pythonPath = [ pythonPackages.pygtk pythonPackages.psutil ];
2021-01-01 13:46:40 +00:00
2016-05-18 10:49:01 +00:00
patchPhase = ''
substituteInPlace install.sh --replace "/usr/local" "$out"
'';
2021-01-01 13:46:40 +00:00
2016-05-18 10:49:01 +00:00
installPhase = ''
mkdir -p $out/bin $out/share/applications
./install.sh
'';
postFixup = ''
wrapPythonPrograms
'';
meta = {
homepage = "https://gitlab.com/o9000/phwmon";
2016-05-18 10:49:01 +00:00
description = "Hardware monitor (CPU, memory, network and disk I/O) for the system tray";
2021-01-15 05:42:41 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.romildo ];
2016-05-18 10:49:01 +00:00
};
}