aboutsummaryrefslogtreecommitdiff
path: root/guix/nar.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-12-10 21:42:02 +0100
committerLudovic Courtès <ludo@gnu.org>2020-12-15 17:32:11 +0100
commit0793833c59e727d5d471fe46c8e0e44c811b9621 (patch)
treeb8dd7d4ab27051e8a24299ffab3fc84091df488a /guix/nar.scm
parent2aa512ec2843991804b5bf345c80abdb2b993bdc (diff)
downloadguix-0793833c59e727d5d471fe46c8e0e44c811b9621.tar
guix-0793833c59e727d5d471fe46c8e0e44c811b9621.tar.gz
database: Remove #:deduplicate? from 'register-items'.
It is now up to the caller to deduplicate store contents. * guix/store/database.scm (register-items): Remove #:deduplicate? parameter and call to 'deduplicate'. (register-path): Call 'deduplicate' when #:deduplicate? is true. * gnu/build/image.scm (register-closure): Adjust call accordingly. * gnu/build/vm.scm (register-closure): Likewise. * guix/nar.scm (finalize-store-file): Likewise. * guix/scripts/pack.scm (store-database): Likewise.
Diffstat (limited to 'guix/nar.scm')
-rw-r--r--guix/nar.scm3
1 files changed, 1 insertions, 2 deletions
diff --git a/guix/nar.scm b/guix/nar.scm
index 947b393d84..a817b56007 100644
--- a/guix/nar.scm
+++ b/guix/nar.scm
@@ -118,8 +118,7 @@ held."
;; Register TARGET. The 'restore-file' call took care of
;; deduplication, timestamps, and permissions.
(register-items db
- (list (store-info target deriver references))
- #:deduplicate? #f))
+ (list (store-info target deriver references))))
(when lock?
(delete-file (string-append target ".lock"))