diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-05-10 21:41:24 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-05-12 08:55:50 +0200 |
commit | b0aaf60a38bd09627666a89c642a742112d3bbcf (patch) | |
tree | ccf133e2279e369fac49dc5375b90f9e1fff7686 | |
parent | f54467968d94dbdaddf55163d7dc4dd55ca1a7eb (diff) | |
download | guix-b0aaf60a38bd09627666a89c642a742112d3bbcf.tar.gz guix-b0aaf60a38bd09627666a89c642a742112d3bbcf.zip |
gnu: pigx-rnaseq: Set HOME.
* gnu/packages/bioinformatics.scm (pigx-rnaseq)[arguments]: Add phase 'pre-check.
Change-Id: Ibabfa8f14b8eaec6d25ae72a2cd0f33e6a7d2819
-rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index c994a3ee2c..56468ee137 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -18076,7 +18076,11 @@ once. This package provides tools to perform Drop-seq analyses.") (setenv "TZ" "UTC+1") (setenv "TZDIR" (search-input-directory inputs - "share/zoneinfo"))))))) + "share/zoneinfo")))) + (add-before 'check 'pre-check + (lambda _ + ;; Needed for tests + (setenv "HOME" "/tmp")))))) (inputs (list coreutils sed |