2018-08-05 22:19:35 +02:00
|
|
|
{ stdenv, fetchFromGitHub, gzip, popt, autoreconfHook
|
|
|
|
, mailutils ? null
|
|
|
|
}:
|
2010-04-29 19:55:06 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "logrotate";
|
2020-03-05 09:00:03 +01:00
|
|
|
version = "3.16.0";
|
2010-04-29 19:55:06 +02:00
|
|
|
|
2017-08-04 17:14:55 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "logrotate";
|
|
|
|
repo = "logrotate";
|
|
|
|
rev = version;
|
2020-03-05 09:00:03 +01:00
|
|
|
sha256 = "0dsz9cfh9glicrnh1rc3jrc176mimnasslihqnj0aknkv8ajq1jh";
|
2010-04-29 19:55:06 +02: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 22:19:35 +02: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 19:55:06 +02:00
|
|
|
'';
|
|
|
|
|
2017-08-04 17:14:55 +02:00
|
|
|
autoreconfPhase = ''
|
|
|
|
./autogen.sh
|
2010-04-29 19:55:06 +02:00
|
|
|
'';
|
|
|
|
|
2017-08-04 17:14:55 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2010-04-29 19:55:06 +02:00
|
|
|
buildInputs = [ popt ];
|
|
|
|
|
|
|
|
meta = {
|
2020-03-05 09:00:03 +01:00
|
|
|
homepage = "https://fedorahosted.org/releases/l/o/logrotate/";
|
2010-04-29 19:55:06 +02:00
|
|
|
description = "Rotates and compresses system logs";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2013-01-15 16:46:30 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.viric ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2010-04-29 19:55:06 +02:00
|
|
|
};
|
|
|
|
}
|