summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvar Penning <post@0x21.biz>2022-05-25 19:44:12 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2022-05-25 18:49:35 +0000
commit748ccaceacebab50eca6376fe619c5aebd266de7 (patch)
treeb27ec413bcdd81877200b4d25b1a0b1a1dd6fe11
parentMerge pull request #174554 from NixOS/backport-174546-to-release-22.05 (diff)
downloadnixpkgs-origin/backport-174565-to-release-22.05.tar.gz
logrotate: 3.19.0 -> 3.20.1origin/backport-174565-to-release-22.05
Fixes CVE-2022-1348. - https://github.com/logrotate/logrotate/releases/tag/3.20.0 - https://github.com/logrotate/logrotate/releases/tag/3.20.1 (cherry picked from commit 0e006cd850af4cee9d6f1c223c53d34eccf9bfb5)
-rw-r--r--pkgs/tools/system/logrotate/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/logrotate/default.nix b/pkgs/tools/system/logrotate/default.nix
index 4c9536cd7cf4..da3732aaab69 100644
--- a/pkgs/tools/system/logrotate/default.nix
+++ b/pkgs/tools/system/logrotate/default.nix
@@ -5,13 +5,13 @@
stdenv.mkDerivation rec {
pname = "logrotate";
- version = "3.19.0";
+ version = "3.20.1";
src = fetchFromGitHub {
owner = "logrotate";
repo = "logrotate";
rev = version;
- sha256 = "sha256-YAoMRLgKPqHsXdXBigl6dPJDkZIAMYK/likhTd/LpkY=";
+ sha256 = "sha256-IegYAV7Mrw9GKMQOE5Bk0J/2ljfHzPlIipyYm3LrUcU=";
};
# Logrotate wants to access the 'mail' program; to be done.