2022-11-14T10:43:46 fatrace 0.16.3 -> 0.17.0 https://repology.org/metapackage/fatrace/versions 2022-11-14T10:43:48 attrpath: fatrace 2022-11-14T10:43:48 Checking auto update branch... 2022-11-14T10:43:48 No auto update branch exists 2022-11-14T10:43:49 Old version 0.16.3" not present in master derivation file with contents: { lib, stdenv , fetchFromGitHub , python3 , which }: stdenv.mkDerivation rec { pname = "fatrace"; version = "0.17.0"; src = fetchFromGitHub { owner = "martinpitt"; repo = pname; rev = version; sha256 = "sha256-MRHM+hyuRevK4L3u6dGw1S3O7w+BJBsprJVcSz6Q9xg="; }; 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; }; }