import: gem: Beautify description field.
* guix/import/gem.scm (gem->guix-package): Use 'beautify-description'.master
parent
2028a2c960
commit
869cda545d
|
@ -117,7 +117,8 @@ VERSION, HASH, HOME-PAGE, DESCRIPTION, DEPENDENCIES, and LICENSES."
|
|||
(let ((name (assoc-ref package "name"))
|
||||
(version (assoc-ref package "version"))
|
||||
(hash (assoc-ref package "sha"))
|
||||
(description (assoc-ref package "info"))
|
||||
(description (beautify-description
|
||||
(assoc-ref package "info")))
|
||||
(home-page (assoc-ref package "homepage_uri"))
|
||||
(dependencies (map (lambda (dep)
|
||||
(let ((name (assoc-ref dep "name")))
|
||||
|
|
Reference in New Issue