mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
scripts: system: Rename `sqlite-register'.
* guix/scripts/system.scm (define-module): #:autoload `register-valid-path' instead of `sqlite-register'. (copy-item): Call it with the new name. Change-Id: I24f71f822a5f400a47adee43f61184a4fbcb9741 Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
78390634d7
commit
a3c28d7f7e
1 changed files with 10 additions and 9 deletions
|
@ -35,7 +35,7 @@ (define-module (guix scripts system)
|
|||
#:use-module (guix store)
|
||||
#:autoload (guix base16) (bytevector->base16-string)
|
||||
#:autoload (guix store database)
|
||||
(sqlite-register store-database-file call-with-database)
|
||||
(register-valid-path store-database-file call-with-database)
|
||||
#:autoload (guix build store-copy) (copy-store-item)
|
||||
#:use-module (guix describe)
|
||||
#:use-module (guix gexp)
|
||||
|
@ -158,13 +158,14 @@ (define* (copy-item item info target db
|
|||
(copy-store-item item target
|
||||
#:deduplicate? #t)
|
||||
|
||||
(sqlite-register db
|
||||
(register-valid-path db
|
||||
#:path item
|
||||
#:references (path-info-references info)
|
||||
#:deriver (path-info-deriver info)
|
||||
#:hash (string-append
|
||||
"sha256:"
|
||||
(bytevector->base16-string (path-info-hash info)))
|
||||
(bytevector->base16-string
|
||||
(path-info-hash info)))
|
||||
#:nar-size (path-info-nar-size info))))
|
||||
|
||||
(define* (copy-closure item target
|
||||
|
|
Loading…
Reference in a new issue