From 6ffa9261f95c06ee039ab8813f6790cd80babec5 Mon Sep 17 00:00:00 2001 From: Vladimir Still Date: Fri, 13 Dec 2013 10:41:38 +0100 Subject: tmpwatch: Add package. --- pkgs/tools/misc/tmpwatch/default.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pkgs/tools/misc/tmpwatch/default.nix (limited to 'pkgs/tools/misc') 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 ]; + }; +} -- cgit 1.4.1