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

32 lines
817 B
Nix
Raw Normal View History

2013-01-15 15:46:30 +00:00
{ stdenv, fetchurl, gzip, popt }:
stdenv.mkDerivation rec {
2015-06-19 06:52:33 +00:00
name = "logrotate-3.9.1";
src = fetchurl {
2013-01-15 15:46:30 +00:00
url = "https://fedorahosted.org/releases/l/o/logrotate/${name}.tar.gz";
2015-06-19 06:52:33 +00:00
sha256 = "0i95qnacv5wf7kfkcpi38ys3i14fr01ifhm8b4ari04c53inj9q2";
};
# Logrotate wants to access the 'mail' program; to be done.
patchPhase = ''
sed -i -e 's,[a-z/]\+gzip,${gzip}/bin/gzip,' \
-e 's,[a-z/]\+gunzip,${gzip}/bin/gunzip,' config.h
'';
preBuild = ''
makeFlags="BASEDIR=$out"
'';
buildInputs = [ popt ];
meta = {
2013-01-15 15:46:30 +00:00
homepage = https://fedorahosted.org/releases/l/o/logrotate/;
description = "Rotates and compresses system logs";
license = stdenv.lib.licenses.gpl2Plus;
2013-01-15 15:46:30 +00:00
maintainers = [ stdenv.lib.maintainers.viric ];
platforms = stdenv.lib.platforms.all;
};
}