2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv
|
2021-01-04 11:16:44 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
, which
|
|
|
|
}:
|
2014-11-23 08:53:40 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "fatrace";
|
2021-05-16 05:13:57 +02:00
|
|
|
version = "0.16.3";
|
2014-11-23 08:53:40 +01:00
|
|
|
|
2021-01-04 11:16:44 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "martinpitt";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-05-16 05:13:57 +02:00
|
|
|
sha256 = "sha256-w7leZPdmiTc+avihP203e6GLvbRzbCtNOJdF8MM2v68=";
|
2014-11-23 08:53:40 +01:00
|
|
|
};
|
|
|
|
|
2015-04-29 21:39:45 +02:00
|
|
|
buildInputs = [ python3 which ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace power-usage-report \
|
|
|
|
--replace "'which'" "'${which}/bin/which'"
|
|
|
|
'';
|
2014-11-23 08:53:40 +01:00
|
|
|
|
2015-11-26 18:44:44 +01:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2014-11-23 08:53:40 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2014-11-23 08:53:40 +01:00
|
|
|
description = "Report system-wide file access events";
|
2021-01-04 11:16:44 +01:00
|
|
|
homepage = "https://github.com/martinpitt/fatrace";
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl3Plus;
|
2014-11-23 08:53:40 +01: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 18:07:05 +01:00
|
|
|
platforms = platforms.linux;
|
2014-11-23 08:53:40 +01:00
|
|
|
};
|
|
|
|
}
|