From df7bbd381352d3241458488d028ba757e206674d Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sat, 6 Oct 2012 01:24:46 +0200 Subject: derivations: Set input port to UTF-8 in `read-derivation'. * guix/derivations.scm (read-derivation): Set DRV-PORT's encoding to UTF-8. --- guix/derivations.scm | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'guix/derivations.scm') diff --git a/guix/derivations.scm b/guix/derivations.scm index c9db580de6..4ecf85aca2 100644 --- a/guix/derivations.scm +++ b/guix/derivations.scm @@ -171,6 +171,10 @@ available in STORE, recursively." '() x)) + ;; The contents of a derivation are typically ASCII, but choosing + ;; UTF-8 allows us to take the fast path for Guile's `scm_getc'. + (set-port-encoding! drv-port "UTF-8") + (let loop ((exp (read drv-port)) (result '())) (match exp -- cgit v1.2.3