summary refs log tree commit diff
path: root/pkgs/tools/system/logrotate
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-26 21:55:40 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-02-26 21:55:40 -0800
commit775ea39f9f0132363c15c4fb5197033a8737c4e9 (patch)
tree9908f28402eba545719d156d88343662f0441181 /pkgs/tools/system/logrotate
parentb63297b203e28f13ce7801c578afa30709cb4edd (diff)
downloadnixpkgs-775ea39f9f0132363c15c4fb5197033a8737c4e9.tar
nixpkgs-775ea39f9f0132363c15c4fb5197033a8737c4e9.tar.gz
nixpkgs-775ea39f9f0132363c15c4fb5197033a8737c4e9.tar.bz2
nixpkgs-775ea39f9f0132363c15c4fb5197033a8737c4e9.tar.lz
nixpkgs-775ea39f9f0132363c15c4fb5197033a8737c4e9.tar.xz
nixpkgs-775ea39f9f0132363c15c4fb5197033a8737c4e9.tar.zst
nixpkgs-775ea39f9f0132363c15c4fb5197033a8737c4e9.zip
logrotate: 3.12.3 -> 3.13.0
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/qjpxc2hbnx8klaj6zxq9zxp29b4afqm1-logrotate-3.13.0/bin/logrotate --help` got 0 exit code
- found 3.13.0 in filename of file in /nix/store/qjpxc2hbnx8klaj6zxq9zxp29b4afqm1-logrotate-3.13.0

cc "@viric"
Diffstat (limited to 'pkgs/tools/system/logrotate')
-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 1c8b386fc8c..fa5df06dae3 100644
--- a/pkgs/tools/system/logrotate/default.nix
+++ b/pkgs/tools/system/logrotate/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "logrotate-${version}";
-  version = "3.12.3";
+  version = "3.13.0";
 
   src = fetchFromGitHub {
     owner = "logrotate";
     repo = "logrotate";
     rev = version;
-    sha256 = "04ygb709fj4ai8m2f1c6imzcmkdvr3ib5zf5qw2lif4fsb30jvyi";
+    sha256 = "0b7dnch74pddml3ysavizq26jgwdv0rjmwc8lf6zfvn9fjz19vvs";
   };
 
   # Logrotate wants to access the 'mail' program; to be done.