logrotate: Update to 3.8.3

This commit is contained in:
Eelco Dolstra 2013-01-15 16:46:30 +01:00
parent 45b0bcbc69
commit a6768a8df2

View File

@ -1,11 +1,11 @@
{stdenv, fetchurl, gzip, popt}: { stdenv, fetchurl, gzip, popt }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "logrotate-3.7.8"; name = "logrotate-3.8.3";
src = fetchurl { src = fetchurl {
url = https://fedorahosted.org/releases/l/o/logrotate/logrotate-3.7.8.tar.gz; url = "https://fedorahosted.org/releases/l/o/logrotate/${name}.tar.gz";
sha256 = "1p9nqmznqvzn03saw3jxa8xwsdqym8jr778rwig8kk786343vai1"; sha256 = "0xqrz8xzs2c1vx8l5h9lp2ciwwifj7y52xsppb1vrvbi254vyxh7";
}; };
# Logrotate wants to access the 'mail' program; to be done. # Logrotate wants to access the 'mail' program; to be done.
@ -21,11 +21,11 @@ stdenv.mkDerivation rec {
buildInputs = [ popt ]; buildInputs = [ popt ];
meta = { meta = {
homepage = "https://fedorahosted.org/releases/l/o/logrotate/"; homepage = https://fedorahosted.org/releases/l/o/logrotate/;
description = "Rotates and compresses system logs"; description = "Rotates and compresses system logs";
license = "GPLv2+"; license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric]; maintainers = [ stdenv.lib.maintainers.viric ];
platforms = with stdenv.lib.platforms; all; platforms = stdenv.lib.platforms.all;
}; };
} }