2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchurl, python3, which }:
|
2014-11-23 08:53:40 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "fatrace";
|
2018-03-28 16:05:34 +02:00
|
|
|
version = "0.13";
|
2014-11-23 08:53:40 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://launchpad.net/fatrace/trunk/${version}/+download/${pname}-${version}.tar.bz2";
|
2018-03-28 16:05:34 +02:00
|
|
|
sha256 = "0hrh45bpzncw0jkxw3x2smh748r65k2yxvfai466043bi5q0d2vx";
|
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'"
|
2017-02-21 18:35:57 +01:00
|
|
|
|
|
|
|
# Avoid a glibc >= 2.25 deprecation warning that gets fatal via -Werror.
|
|
|
|
sed 1i'#include <sys/sysmacros.h>' -i fatrace.c
|
2015-04-29 21:39:45 +02:00
|
|
|
'';
|
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
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Report system-wide file access events";
|
|
|
|
homepage = https://launchpad.net/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
|
|
|
};
|
|
|
|
}
|