2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, gzip, popt, autoreconfHook
|
2018-08-05 21:19:35 +01:00
|
|
|
, mailutils ? null
|
|
|
|
}:
|
2010-04-29 18:55:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "logrotate";
|
2020-07-12 09:36:33 +01:00
|
|
|
version = "3.17.0";
|
2010-04-29 18:55:06 +01:00
|
|
|
|
2017-08-04 16:14:55 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "logrotate";
|
|
|
|
repo = "logrotate";
|
|
|
|
rev = version;
|
2020-07-12 09:36:33 +01:00
|
|
|
sha256 = "133k4y24p918v4dva6dh70bdfv13jvwl2vlhq0mybrs3ripvnh4h";
|
2010-04-29 18:55:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Logrotate wants to access the 'mail' program; to be done.
|
2021-02-17 13:16:22 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-compress-command=${gzip}/bin/gzip"
|
|
|
|
"--with-uncompress-command=${gzip}/bin/gunzip"
|
|
|
|
] ++ lib.optionals (mailutils != null) [
|
|
|
|
"--with-default-mail-command=${mailutils}/bin/mail"
|
|
|
|
];
|
2010-04-29 18:55:06 +01:00
|
|
|
|
2017-08-04 16:14:55 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2010-04-29 18:55:06 +01:00
|
|
|
buildInputs = [ popt ];
|
|
|
|
|
2021-02-17 13:16:22 +00:00
|
|
|
meta = with lib; {
|
2020-03-05 08:00:03 +00:00
|
|
|
homepage = "https://fedorahosted.org/releases/l/o/logrotate/";
|
2010-04-29 18:55:06 +01:00
|
|
|
description = "Rotates and compresses system logs";
|
2021-02-17 13:16:22 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.viric ];
|
|
|
|
platforms = platforms.all;
|
2010-04-29 18:55:06 +01:00
|
|
|
};
|
|
|
|
}
|