Ricardo Wurmus <ricardo.wur...@mdc-berlin.de> skribis: > * guix/import/cran.scm (guix-name): Replace period and underscore with > dash; always prepend package names with "r-".
[...] > + (string-append "r-" (string-downcase > + (regexp-substitute/global #f "(_|\\.)" name > + 'pre "-" 'post)))) I’d have a preference for ‘string-map’ here. WDYT? Otherwise looks good! Ludo’.