summary refs log tree commit diff
path: root/pkgs/os-specific/linux/fatrace
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-11-09 18:07:05 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-11-09 18:07:05 +0100
commit0c55a42dfb36d541b4d691065894d709636385cf (patch)
treef13dff3592b48fab88a8f51393e059cb2fd94743 /pkgs/os-specific/linux/fatrace
parent10df3db175ec52d404d257391c5bdbaa43b89855 (diff)
downloadnixpkgs-0c55a42dfb36d541b4d691065894d709636385cf.tar
nixpkgs-0c55a42dfb36d541b4d691065894d709636385cf.tar.gz
nixpkgs-0c55a42dfb36d541b4d691065894d709636385cf.tar.bz2
nixpkgs-0c55a42dfb36d541b4d691065894d709636385cf.tar.lz
nixpkgs-0c55a42dfb36d541b4d691065894d709636385cf.tar.xz
nixpkgs-0c55a42dfb36d541b4d691065894d709636385cf.tar.zst
nixpkgs-0c55a42dfb36d541b4d691065894d709636385cf.zip
fatrace 0.10 -> 0.11
Diffstat (limited to 'pkgs/os-specific/linux/fatrace')
-rw-r--r--pkgs/os-specific/linux/fatrace/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/fatrace/default.nix b/pkgs/os-specific/linux/fatrace/default.nix
index b8fc6e5f6ce..c620a0056c1 100644
--- a/pkgs/os-specific/linux/fatrace/default.nix
+++ b/pkgs/os-specific/linux/fatrace/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, python3, which }:
 
-let version = "0.10"; in
+let version = "0.11"; in
 stdenv.mkDerivation rec {
   name = "fatrace-${version}";
 
   src = fetchurl {
     url = "http://launchpad.net/fatrace/trunk/${version}/+download/${name}.tar.bz2";
-    sha256 = "0q0cv2bsgf76wypz18v2acgj1crcdqhrhlsij3r53glsyv86xyra";
+    sha256 = "1f77v222nlfbf8fv7d28cnpm7x8xz0mhxavgz19c2jc51pjlv84s";
   };
 
   buildInputs = [ python3 which ];
@@ -27,11 +27,10 @@ stdenv.mkDerivation rec {
       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 ];
-    platforms = with platforms; linux;
+    platforms = platforms.linux;
   };
 }