From a9ebd9efd0d97159acbec848ad5fe06f022c8235 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 30 Jan 2013 16:30:49 +0100 Subject: store: Remove the `fixed?' parameter from `add-to-store'. * guix/store.scm (add-to-store): Remove the `fixed?' parameter from the public interface. * gnu/packages/bootstrap.scm, guix-download.in, guix/derivations.scm, guix/packages.scm, tests/derivations.scm: Update all callers accordingly. --- guix/derivations.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'guix/derivations.scm') diff --git a/guix/derivations.scm b/guix/derivations.scm index a36a6559b4..6f73534c3c 100644 --- a/guix/derivations.scm +++ b/guix/derivations.scm @@ -458,7 +458,7 @@ (define (env-vars-with-empty-outputs) ((input . _) (let ((path (add-to-store store (basename input) - #t #t "sha256" input))) + #t "sha256" input))) (make-derivation-input path '())))) (delete-duplicates inputs))) (env-vars (env-vars-with-empty-outputs)) @@ -519,7 +519,7 @@ (define* (imported-files store files (let* ((files (map (match-lambda ((final-path . file-name) (list final-path - (add-to-store store (basename final-path) #t #f + (add-to-store store (basename final-path) #f "sha256" file-name)))) files)) (builder -- cgit v1.2.3