1.8 KiB
1.8 KiB
Babel Library
This library contains code blocks to be used by other files in this repository.
Converting Lists
Converting org lists into guix use-
calls.
(pretty-print
`(,(string->symbol use-call)
,@(map (lambda (x)
(let ((splits (string-split x #\ )))
(if (and (= (length splits) 1)
(= 0 all-parens))
(string->symbol (car splits))
(map (lambda (y) (string->symbol y))
splits))))
entries)))
Converting Org lists into Scheme symbol lists.
- Entry 1
- Entry 2
(pretty-print
`(list
,@(map (lambda (x) (string->symbol x)) input)))
ice-9/boot-9.scm:1685:16: In procedure raise-exception: Wrong type to apply: "Entry 1" Entering a new prompt. Type `,bt' for a backtrace or `,q' to continue. scheme@(guile-user) [1]>
Converting Tables
(pretty-print
`(list
,@(map
(lambda (row)
(let ((service-name (car row))
(configuration (cadr row)))
`(service ,(string->symbol (string-append service-name "-service-type"))
(,(string->symbol (string-append service-name "-configuration"))
,@(call-with-input-string configuration
read)))))
input)))