nixpkgs/pkgs/tools/system/logrotate/default.nix

36 lines
994 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchFromGitHub, gzip, popt, autoreconfHook
, mailutils ? null
2021-03-22 19:57:57 +00:00
, aclSupport ? true, acl
}:
stdenv.mkDerivation rec {
pname = "logrotate";
2021-05-23 02:00:19 +00:00
version = "3.18.1";
src = fetchFromGitHub {
owner = "logrotate";
repo = "logrotate";
rev = version;
2021-05-23 02:00:19 +00:00
sha256 = "sha256-OJOV++rtN9ry+l0c0eanpu/Pwu8cOHfyEaDWp3FZjkw=";
};
# 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"
];
nativeBuildInputs = [ autoreconfHook ];
2021-03-22 19:57:57 +00:00
buildInputs = [ popt ] ++ lib.optionals aclSupport [ acl ];
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/";
description = "Rotates and compresses system logs";
2021-02-17 13:16:22 +00:00
license = licenses.gpl2Plus;
maintainers = [ maintainers.viric ];
platforms = platforms.all;
};
}