summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorVladimir Still <xstill@fi.muni.cz>2013-12-13 10:41:38 +0100
committerEvgeny Egorochkin <phreedom@yandex.ru>2013-12-13 20:56:35 +0200
commit6ffa9261f95c06ee039ab8813f6790cd80babec5 (patch)
tree1c9c60db37cc8a077190f98fa4e9f04062fbac34 /pkgs/tools/misc
parentfb9e61ef025982238ddda552963ac50626e4ef3a (diff)
downloadnixpkgs-6ffa9261f95c06ee039ab8813f6790cd80babec5.tar
nixpkgs-6ffa9261f95c06ee039ab8813f6790cd80babec5.tar.gz
nixpkgs-6ffa9261f95c06ee039ab8813f6790cd80babec5.tar.bz2
nixpkgs-6ffa9261f95c06ee039ab8813f6790cd80babec5.tar.lz
nixpkgs-6ffa9261f95c06ee039ab8813f6790cd80babec5.tar.xz
nixpkgs-6ffa9261f95c06ee039ab8813f6790cd80babec5.tar.zst
nixpkgs-6ffa9261f95c06ee039ab8813f6790cd80babec5.zip
tmpwatch: Add package.
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/tmpwatch/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/tools/misc/tmpwatch/default.nix b/pkgs/tools/misc/tmpwatch/default.nix
new file mode 100644
index 00000000000..2257fb50293
--- /dev/null
+++ b/pkgs/tools/misc/tmpwatch/default.nix
@@ -0,0 +1,17 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "tmpwatch-2.11";
+
+  src = fetchurl {
+    url = "https://fedorahosted.org/releases/t/m/tmpwatch/tmpwatch-2.11.tar.bz2";
+    sha256 = "1m5859ngwx61l1i4s6fja2avf1hyv6w170by273w8nsin89825lk";
+  };
+
+  meta = {
+    homepage = https://fedorahosted.org/tmpwatch/;
+    description = "The tmpwatch utility recursively searches through specified directories and removes files which have not been accessed in a specified period of time.";
+    licence = "GPLv2";
+    maintainers = with stdenv.lib.maintainers; [ vlstill ];
+  };
+}