diff options
-rw-r--r-- | guix/transformations.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/transformations.scm b/guix/transformations.scm index 4e9260350c..b0c09a0c92 100644 --- a/guix/transformations.scm +++ b/guix/transformations.scm @@ -25,7 +25,7 @@ #:autoload (guix download) (download-to-store) #:autoload (guix git-download) (git-reference? git-reference-url) #:autoload (guix git) (git-checkout git-checkout? git-checkout-url) - #:autoload (guix upstream) (package-latest-release* + #:autoload (guix upstream) (package-latest-release upstream-source-version upstream-source-signature-urls) #:use-module (guix utils) @@ -518,7 +518,7 @@ additional patches." "Return a procedure that rewrites package graphs such that those in SPECS are replaced by their latest upstream version." (define (package-with-latest-upstream p) - (let ((source (package-latest-release* p))) + (let ((source (package-latest-release p))) (cond ((not source) (warning (G_ "could not determine latest upstream release of '~a'~%") |