diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-06-02 12:49:25 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-06-02 12:49:25 +0200 |
commit | cbbb619ddb350fb4b5b0ad59836e3c94e016099b (patch) | |
tree | 6bdf77979dcedb83befdb915be455b4d0e3af459 /guix/import/cran.scm | |
parent | 67183e25ada01ec8125f5784c27fc3d098f7c0f0 (diff) |
import/cran: Libraries should not use CRAN-GUIX-NAME.
* guix/import/cran.scm (source-dir->dependencies): Do not use CRAN-GUIX-NAME
when processing result of NEEDED-LIBRARIES-IN-DIRECTORY.
Diffstat (limited to 'guix/import/cran.scm')
-rw-r--r-- | guix/import/cran.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/import/cran.scm b/guix/import/cran.scm index bec2010cc5..e8bfa1b916 100644 --- a/guix/import/cran.scm +++ b/guix/import/cran.scm @@ -524,7 +524,7 @@ in DIR." (append (map (lambda (name) (upstream-input (name name) - (downstream-name (cran-guix-name name)))) + (downstream-name name))) (needed-libraries-in-directory dir)) (if (directory-needs-esbuild? dir) (list (native "esbuild")) |