mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
39 lines
981 B
Nix
39 lines
981 B
Nix
{ lib, stdenv, fetchFromGitHub, gzip, popt, autoreconfHook
|
|
, aclSupport ? true, acl
|
|
, nixosTests
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "logrotate";
|
|
version = "3.22.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "logrotate";
|
|
repo = "logrotate";
|
|
rev = version;
|
|
sha256 = "sha256-D7E2mpC7v2kbsb1EyhR6hLvGbnIvGB2MK1n1gptYyKI=";
|
|
};
|
|
|
|
# Logrotate wants to access the 'mail' program; to be done.
|
|
configureFlags = [
|
|
"--with-compress-command=${gzip}/bin/gzip"
|
|
"--with-uncompress-command=${gzip}/bin/gunzip"
|
|
];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ popt ] ++ lib.optionals aclSupport [ acl ];
|
|
|
|
passthru.tests = {
|
|
nixos-logrotate = nixosTests.logrotate;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/logrotate/logrotate";
|
|
description = "Rotates and compresses system logs";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.tobim ];
|
|
platforms = platforms.all;
|
|
mainProgram = "logrotate";
|
|
};
|
|
}
|