diff options
-rw-r--r-- | guix/scripts/pack.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/guix/scripts/pack.scm b/guix/scripts/pack.scm index 1d2046775c..b7897227bc 100644 --- a/guix/scripts/pack.scm +++ b/guix/scripts/pack.scm @@ -1749,7 +1749,10 @@ Create a bundle of PACKAGE.\n")) (load* file user-module))) manifests))) (else - (packages->manifest packages)))))) + (packages->manifest packages + #:properties (if (assoc-ref opts 'save-provenance?) + default-package-properties + (const '())))))))) (define (process-file-arg opts name) ;; Validate that the file exists and return it as a <local-file> object, |