python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / tmpwatch / default.nix
blob9d9bb853f2f99b94ecee0193f41009b2753fa5d0
1 { lib, stdenv, fetchurl, psmisc }:
3 stdenv.mkDerivation rec {
4   pname = "tmpwatch";
5   version = "2.11";
7   src = fetchurl {
8     url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.bz2";
9     sha256 = "1m5859ngwx61l1i4s6fja2avf1hyv6w170by273w8nsin89825lk";
10   };
12   configureFlags = [ "--with-fuser=${psmisc}/bin/fuser" ];
14   meta = with lib; {
15     homepage = "https://pagure.io/tmpwatch";
16     description = "Recursively searches through specified directories and removes files which have not been accessed in a specified period of time";
17     license = licenses.gpl2;
18     maintainers = with maintainers; [ vlstill ];
19     platforms = platforms.unix;
20   };