2015-04-29 12:39:45 -07:00
|
|
|
{ stdenv, fetchurl, python3, which }:
|
2014-11-22 23:53:40 -08:00
|
|
|
|
2015-11-09 09:07:05 -08:00
|
|
|
let version = "0.11"; in
|
2014-11-22 23:53:40 -08:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "fatrace-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2015-04-29 12:30:56 -07:00
|
|
|
url = "http://launchpad.net/fatrace/trunk/${version}/+download/${name}.tar.bz2";
|
2015-11-09 09:07:05 -08:00
|
|
|
sha256 = "1f77v222nlfbf8fv7d28cnpm7x8xz0mhxavgz19c2jc51pjlv84s";
|
2014-11-22 23:53:40 -08:00
|
|
|
};
|
|
|
|
|
2015-04-29 12:39:45 -07:00
|
|
|
buildInputs = [ python3 which ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace power-usage-report \
|
|
|
|
--replace "'which'" "'${which}/bin/which'"
|
|
|
|
'';
|
2014-11-22 23:53:40 -08:00
|
|
|
|
|
|
|
makeFlagsArray = "PREFIX=$(out)";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-04-29 12:30:56 -07:00
|
|
|
inherit version;
|
2014-11-22 23:53:40 -08:00
|
|
|
description = "Report system-wide file access events";
|
|
|
|
homepage = https://launchpad.net/fatrace/;
|
2015-05-28 10:20:29 -07:00
|
|
|
license = licenses.gpl3Plus;
|
2014-11-22 23:53:40 -08: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.
|
|
|
|
'';
|
|
|
|
maintainers = with maintainers; [ nckx ];
|
2015-11-09 09:07:05 -08:00
|
|
|
platforms = platforms.linux;
|
2014-11-22 23:53:40 -08:00
|
|
|
};
|
|
|
|
}
|