From 4a06a1aca38b8251fc1fecc6d572d636faf3dcc5 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 27 Nov 2024 14:10:15 +0100 Subject: [PATCH] import/cran: Set HOME when R.rsp is among inputs. * guix/import/cran.scm (phases-for-inputs): Also add 'set-HOME phase when R.rsp is among the inputs. Change-Id: Ib00d981cc623da8ec487086913570f937a76aeb5 --- guix/import/cran.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/import/cran.scm b/guix/import/cran.scm index 4db5509ed1..917d36c5a3 100644 --- a/guix/import/cran.scm +++ b/guix/import/cran.scm @@ -679,7 +679,7 @@ (define (phases-for-inputs input-names) (let ((rules (list (lambda () (and (any (lambda (name) - (member name '("styler" "ExperimentHub"))) + (member name '("styler" "ExperimentHub" "R.rsp"))) input-names) '(add-after 'unpack 'set-HOME (lambda _ (setenv "HOME" "/tmp")))))