2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2021-01-04 10:16:44 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
, which
|
|
|
|
}:
|
2014-11-23 07:53:40 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "fatrace";
|
2021-01-04 10:16:44 +00:00
|
|
|
version = "0.16.1";
|
2014-11-23 07:53:40 +00:00
|
|
|
|
2021-01-04 10:16:44 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "martinpitt";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0lxfqin2bw9235yah8ylb4p8lc3755050sjg30z3gy7bab0lfyg9";
|
2014-11-23 07:53:40 +00:00
|
|
|
};
|
|
|
|
|
2015-04-29 20:39:45 +01:00
|
|
|
buildInputs = [ python3 which ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace power-usage-report \
|
|
|
|
--replace "'which'" "'${which}/bin/which'"
|
|
|
|
'';
|
2014-11-23 07:53:40 +00:00
|
|
|
|
2015-11-26 17:44:44 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2014-11-23 07:53:40 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-11-23 07:53:40 +00:00
|
|
|
description = "Report system-wide file access events";
|
2021-01-04 10:16:44 +00:00
|
|
|
homepage = "https://github.com/martinpitt/fatrace";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2014-11-23 07:53:40 +00:00
|
|
|
longDescription = ''
|
|
|
|
fatrace reports file access events from all running processes.
|
|
|
|
Its main purpose is to find processes which keep waking up the disk
|
|
|
|
unnecessarily and thus prevent some power saving.
|
|
|
|
Requires a Linux kernel with the FANOTIFY configuration option enabled.
|
|
|
|
Enabling X86_MSR is also recommended for power-usage-report on x86.
|
|
|
|
'';
|
2015-11-09 17:07:05 +00:00
|
|
|
platforms = platforms.linux;
|
2014-11-23 07:53:40 +00:00
|
|
|
};
|
|
|
|
}
|