fatrace 0.10 -> 0.11

This commit is contained in:
Tobias Geerinckx-Rice 2015-11-09 18:07:05 +01:00
parent 10df3db175
commit 0c55a42dfb

View File

@ -1,12 +1,12 @@
{ stdenv, fetchurl, python3, which }: { stdenv, fetchurl, python3, which }:
let version = "0.10"; in let version = "0.11"; in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "fatrace-${version}"; name = "fatrace-${version}";
src = fetchurl { src = fetchurl {
url = "http://launchpad.net/fatrace/trunk/${version}/+download/${name}.tar.bz2"; url = "http://launchpad.net/fatrace/trunk/${version}/+download/${name}.tar.bz2";
sha256 = "0q0cv2bsgf76wypz18v2acgj1crcdqhrhlsij3r53glsyv86xyra"; sha256 = "1f77v222nlfbf8fv7d28cnpm7x8xz0mhxavgz19c2jc51pjlv84s";
}; };
buildInputs = [ python3 which ]; buildInputs = [ python3 which ];
@ -27,11 +27,10 @@ stdenv.mkDerivation rec {
fatrace reports file access events from all running processes. fatrace reports file access events from all running processes.
Its main purpose is to find processes which keep waking up the disk Its main purpose is to find processes which keep waking up the disk
unnecessarily and thus prevent some power saving. unnecessarily and thus prevent some power saving.
Requires a Linux kernel with the FANOTIFY configuration option enabled. Requires a Linux kernel with the FANOTIFY configuration option enabled.
Enabling X86_MSR is also recommended for power-usage-report on x86. Enabling X86_MSR is also recommended for power-usage-report on x86.
''; '';
maintainers = with maintainers; [ nckx ]; maintainers = with maintainers; [ nckx ];
platforms = with platforms; linux; platforms = platforms.linux;
}; };
} }