Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
python3,
|
|
which,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fatrace";
|
|
version = "0.19.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "martinpitt";
|
|
repo = "fatrace";
|
|
rev = version;
|
|
sha256 = "sha256-ncLmO7DwkB2nC4K/40ctwRheVVSPDK+zfcGJZvYyuVI=";
|
|
};
|
|
|
|
buildInputs = [
|
|
python3
|
|
which
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace power-usage-report \
|
|
--replace "'which'" "'${which}/bin/which'"
|
|
'';
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Report system-wide file access events";
|
|
homepage = "https://github.com/martinpitt/fatrace";
|
|
license = licenses.gpl3Plus;
|
|
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.
|
|
'';
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|