summary refs log tree commit diff
path: root/pkgs/os-specific/linux/fnotifystat
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-02-28 14:30:08 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2020-02-28 14:30:08 +0000
commitc3c7c3b486117ecfd0e17e6265c36e912346da62 (patch)
tree9bbda7b9af067fba7704f88b0056b6016ecfa14d /pkgs/os-specific/linux/fnotifystat
parentf7d07d48513dd3bf8f84f347c3c0e1800207f01d (diff)
downloadnixpkgs-c3c7c3b486117ecfd0e17e6265c36e912346da62.tar
nixpkgs-c3c7c3b486117ecfd0e17e6265c36e912346da62.tar.gz
nixpkgs-c3c7c3b486117ecfd0e17e6265c36e912346da62.tar.bz2
nixpkgs-c3c7c3b486117ecfd0e17e6265c36e912346da62.tar.lz
nixpkgs-c3c7c3b486117ecfd0e17e6265c36e912346da62.tar.xz
nixpkgs-c3c7c3b486117ecfd0e17e6265c36e912346da62.tar.zst
nixpkgs-c3c7c3b486117ecfd0e17e6265c36e912346da62.zip
fnotifystat: 0.02.03 -> 0.02.05
Diffstat (limited to 'pkgs/os-specific/linux/fnotifystat')
-rw-r--r--pkgs/os-specific/linux/fnotifystat/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/fnotifystat/default.nix b/pkgs/os-specific/linux/fnotifystat/default.nix
index c20206dc351..ef247ad956b 100644
--- a/pkgs/os-specific/linux/fnotifystat/default.nix
+++ b/pkgs/os-specific/linux/fnotifystat/default.nix
@@ -2,10 +2,10 @@
 
 stdenv.mkDerivation rec {
   pname = "fnotifystat";
-  version = "0.02.03";
+  version = "0.02.05";
   src = fetchurl {
     url = "https://kernel.ubuntu.com/~cking/tarballs/fnotifystat/fnotifystat-${version}.tar.gz";
-    sha256 = "1b5s50dc8ag6k631nfp09chrqfpwai0r9ld822xqwp3qlszp0pv9";
+    sha256 = "1b8pxq731sj976m2daf0hnqfaaq688vqnjffinpwh2w9nzzi4gi9";
   };
   installFlags = [ "DESTDIR=$(out)" ];
   postInstall = ''
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
   '';
   meta = with lib; {
     description = "File activity monitoring tool";
-    homepage = https://kernel.ubuntu.com/~cking/fnotifystat/;
+    homepage = "https://kernel.ubuntu.com/~cking/fnotifystat/";
     license = licenses.gpl2;
     platforms = platforms.linux;
     maintainers = with maintainers; [ womfoo ];