2018-08-05 13:19:35 -07:00
|
|
|
{ stdenv, fetchFromGitHub, gzip, popt, autoreconfHook
|
|
|
|
, mailutils ? null
|
|
|
|
}:
|
2010-04-29 10:55:06 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-08-04 08:14:55 -07:00
|
|
|
name = "logrotate-${version}";
|
2018-12-15 03:44:48 -08:00
|
|
|
version = "3.15.0";
|
2010-04-29 10:55:06 -07:00
|
|
|
|
2017-08-04 08:14:55 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "logrotate";
|
|
|
|
repo = "logrotate";
|
|
|
|
rev = version;
|
2018-12-15 03:44:48 -08:00
|
|
|
sha256 = "094wv4d3gv5dmw55d0xij06lgcg5q9bmq49hipc2jhp4vdsj4xr5";
|
2010-04-29 10:55:06 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
# Logrotate wants to access the 'mail' program; to be done.
|
|
|
|
patchPhase = ''
|
|
|
|
sed -i -e 's,[a-z/]\+gzip,${gzip}/bin/gzip,' \
|
2018-08-05 13:19:35 -07:00
|
|
|
-e 's,[a-z/]\+gunzip,${gzip}/bin/gunzip,' configure.ac
|
|
|
|
|
|
|
|
${stdenv.lib.optionalString (mailutils != null) ''
|
|
|
|
sed -i -e 's,[a-z/]\+mail,${mailutils}/bin/mail,' configure.ac
|
|
|
|
''}
|
2010-04-29 10:55:06 -07:00
|
|
|
'';
|
|
|
|
|
2017-08-04 08:14:55 -07:00
|
|
|
autoreconfPhase = ''
|
|
|
|
./autogen.sh
|
2010-04-29 10:55:06 -07:00
|
|
|
'';
|
|
|
|
|
2017-08-04 08:14:55 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2010-04-29 10:55:06 -07:00
|
|
|
buildInputs = [ popt ];
|
|
|
|
|
|
|
|
meta = {
|
2013-01-15 07:46:30 -08:00
|
|
|
homepage = https://fedorahosted.org/releases/l/o/logrotate/;
|
2010-04-29 10:55:06 -07:00
|
|
|
description = "Rotates and compresses system logs";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2013-01-15 07:46:30 -08:00
|
|
|
maintainers = [ stdenv.lib.maintainers.viric ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2010-04-29 10:55:06 -07:00
|
|
|
};
|
|
|
|
}
|