mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
Merge pull request #117271 from aanderse/logrotate
logrotate: compile with acl support
This commit is contained in:
commit
10ec5b789f
@ -1,5 +1,6 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, gzip, popt, autoreconfHook
|
{ lib, stdenv, fetchFromGitHub, gzip, popt, autoreconfHook
|
||||||
, mailutils ? null
|
, mailutils ? null
|
||||||
|
, aclSupport ? true, acl
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -22,7 +23,7 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
buildInputs = [ popt ];
|
buildInputs = [ popt ] ++ lib.optionals aclSupport [ acl ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://fedorahosted.org/releases/l/o/logrotate/";
|
homepage = "https://fedorahosted.org/releases/l/o/logrotate/";
|
||||||
|
Loading…
Reference in New Issue
Block a user