summary refs log tree commit diff
path: root/guix
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2023-06-02 12:49:25 +0200
committerRicardo Wurmus <rekado@elephly.net>2023-06-02 12:49:25 +0200
commitcbbb619ddb350fb4b5b0ad59836e3c94e016099b (patch)
tree6bdf77979dcedb83befdb915be455b4d0e3af459 /guix
parent67183e25ada01ec8125f5784c27fc3d098f7c0f0 (diff)
downloadguix-cbbb619ddb350fb4b5b0ad59836e3c94e016099b.tar.gz
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')
-rw-r--r--guix/import/cran.scm2
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"))