diff options
| author | Rutherther <rutherther@ditigal.xyz> | 2025-12-18 15:39:54 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2025-12-22 23:00:46 +0100 |
| commit | ab63e29e90aba4f10d477e76587d687a7bb6a27d (patch) | |
| tree | 990d7bc0a54fd765c334cc9ca50b85fe6852e4eb | |
| parent | e2857e21fa54ff72b4adabf95841d61fb820d55f (diff) | |
installer: Drop uri from provenance log.
To synchronize the artifacts made from Cuirass, pre-inst-env
and time-machine, drop the url from provenance sexp.
* gnu/installer.scm (provenance-sexp): Drop url.
Change-Id: Ibe2515abdc92853ce06c0381dd03cc61b2077335
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
| -rw-r--r-- | gnu/installer.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/installer.scm b/gnu/installer.scm index d905ffa7957..adc891e4eb4 100644 --- a/gnu/installer.scm +++ b/gnu/installer.scm | |||
| @@ -367,11 +367,10 @@ purposes." | |||
| 367 | 'unknown) | 367 | 'unknown) |
| 368 | ((channels ...) | 368 | ((channels ...) |
| 369 | (map (lambda (channel) | 369 | (map (lambda (channel) |
| 370 | (let* ((uri (string->uri (channel-url channel))) | 370 | ;; NOTE: URL is not logged to synchronize the derivations |
| 371 | (url (if (or (not uri) (eq? 'file (uri-scheme uri))) | 371 | ;; coming out of pre-inst-env, time-machine and Cuirass |
| 372 | "local checkout" | 372 | ;; for generating release artifacts. |
| 373 | (channel-url channel)))) | 373 | `(channel ,(channel-name channel) ,(channel-commit channel))) |
| 374 | `(channel ,(channel-name channel) ,url ,(channel-commit channel)))) | ||
| 375 | channels)))) | 374 | channels)))) |
| 376 | 375 | ||
| 377 | (define* (installer-program #:key dry-run? (guix-for-installer (current-guix))) | 376 | (define* (installer-program #:key dry-run? (guix-for-installer (current-guix))) |
