1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "tmpwatch-2.11";
5
6 src = fetchurl {
7 url = "https://fedorahosted.org/releases/t/m/tmpwatch/tmpwatch-2.11.tar.bz2";
8 sha256 = "1m5859ngwx61l1i4s6fja2avf1hyv6w170by273w8nsin89825lk";
9 };
10
11 meta = with stdenv.lib; {
12 homepage = https://fedorahosted.org/tmpwatch/;
13 description = "Recursively searches through specified directories and removes files which have not been accessed in a specified period of time";
14 license = licenses.gpl2;
15 maintainers = with maintainers; [ vlstill ];
16 platforms = platforms.unix;
17 };
18}