about 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-04-29 21:30:56 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-04-30 13:11:30 +0200
commit8ce7626dc728253d93759c2571d403380c0ed28b (patch)
tree9fde5a67b49348b26063f332a0dd233d960b2ef6 /pkgs/os-specific/linux/fatrace
parent5204bdfba6cbb559043e35d07872d48ad4a03018 (diff)
fatrace 0.9 -> 0.10
Diffstat (limited to 'pkgs/os-specific/linux/fatrace')
-rw-r--r--pkgs/os-specific/linux/fatrace/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/fatrace/default.nix b/pkgs/os-specific/linux/fatrace/default.nix
index c6e52934a7744..95c615111ff3d 100644
--- a/pkgs/os-specific/linux/fatrace/default.nix
+++ b/pkgs/os-specific/linux/fatrace/default.nix
@@ -1,12 +1,12 @@
 {stdenv, fetchurl, python3}:
 
+let version = "0.10"; in
 stdenv.mkDerivation rec {
-  version = "0.9";
   name = "fatrace-${version}";
 
   src = fetchurl {
-    url = "https://launchpad.net/fatrace/trunk/${version}/+download/${name}.tar.bz2";
-    sha256 = "c028d822ffde68805e5d1f62c4e2d0f4b3d4ae565802cc9468c82b25b92e68cd";
+    url = "http://launchpad.net/fatrace/trunk/${version}/+download/${name}.tar.bz2";
+    sha256 = "0q0cv2bsgf76wypz18v2acgj1crcdqhrhlsij3r53glsyv86xyra";
   };
 
   buildInputs = [ python3 ];
@@ -14,6 +14,7 @@ stdenv.mkDerivation rec {
   makeFlagsArray = "PREFIX=$(out)";
 
   meta = with stdenv.lib; {
+    inherit version;
     description = "Report system-wide file access events";
     homepage = https://launchpad.net/fatrace/;
     license = with licenses; gpl3Plus;