summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-24 04:02:03 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-24 04:10:57 +0100
commit10229032a9799eeca0068b7bd1e05ab1d127c648 (patch)
treedba37e508ab9f5895ab2504a02ef31c417d78e24 /pkgs
parent32d40f0f98e7cb50a979a596d61f757fda4ab27d (diff)
downloadnixpkgs-10229032a9799eeca0068b7bd1e05ab1d127c648.tar
nixpkgs-10229032a9799eeca0068b7bd1e05ab1d127c648.tar.gz
nixpkgs-10229032a9799eeca0068b7bd1e05ab1d127c648.tar.bz2
nixpkgs-10229032a9799eeca0068b7bd1e05ab1d127c648.tar.lz
nixpkgs-10229032a9799eeca0068b7bd1e05ab1d127c648.tar.xz
nixpkgs-10229032a9799eeca0068b7bd1e05ab1d127c648.tar.zst
nixpkgs-10229032a9799eeca0068b7bd1e05ab1d127c648.zip
borg: 0.29.0 -> 0.30.0
Compatibility notes:

- you may need to use -v (or --info) more often to actually see
  output emitted at INFO log level (because it is suppressed at
  the default WARNING log level). See the general section in the
  usage docs.
- for borg create, you need --list (additionally to -v) to see
  the long file list (was needed so you can have e.g. --stats
  alone without the long list)
- see link below about BORG_DELETE_I_KNOW_WHAT_I_AM_DOING
  (was: BORG_CHECK_I_KNOW_WHAT_I_AM_DOING)

More: https://github.com/borgbackup/borg/blob/0.30.0/docs/changes.rst
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/backup/borg/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/backup/borg/default.nix b/pkgs/tools/backup/borg/default.nix
index a68a5a7313e..dd590bb046d 100644
--- a/pkgs/tools/backup/borg/default.nix
+++ b/pkgs/tools/backup/borg/default.nix
@@ -2,12 +2,12 @@
 
 python3Packages.buildPythonPackage rec {
   name = "borgbackup-${version}";
-  version = "0.29.0";
+  version = "0.30.0";
   namePrefix = "";
 
   src = fetchurl {
     url = "https://pypi.python.org/packages/source/b/borgbackup/borgbackup-${version}.tar.gz";
-    sha256 = "1gvx036a7j16hd5rg8cr3ibiig7gwqhmddrilsakcw4wnfimjy5m";
+    sha256 = "0n78c982kdfqbyi9jawcvzgdik4l36c2s7rpzkfr1ka6506k2rx4";
   };
 
   propagatedBuildInputs = with python3Packages;