diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/backup.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index d50c7e4fdc..c312f23c1a 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -11,7 +11,7 @@ ;;; Copyright © 2017 Rutger Helling <[email protected]> ;;; Copyright © 2018 Mark H Weaver <[email protected]> ;;; Copyright © 2018 Oleg Pykhalov <[email protected]> -;;; Copyright © 2018 Ricardo Wurmus <[email protected]> +;;; Copyright © 2018, 2019 Ricardo Wurmus <[email protected]> ;;; Copyright © 2019 Alex Vong <[email protected]> ;;; ;;; This file is part of GNU Guix. @@ -564,6 +564,11 @@ detection, and lossless compression.") ;; HOME=/homeless-shelter. (setenv "HOME" "/tmp") #t))) + (add-after 'unpack 'remove-documentation-timestamps ; reproducibility + (lambda _ + (substitute* "setup.py" + (("write\\(':Date:'.*") "\n")) + #t)) ;; The tests need to be run after Borg is installed. (delete 'check) (add-after 'install 'check |