aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/cups.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2023-06-05 17:20:52 +0200
committerRicardo Wurmus <rekado@elephly.net>2023-06-05 17:20:52 +0200
commit4f2ec0f2d1f1cb136b109f9703f88cebb1356f12 (patch)
treef6fcdc4abee9a11d4e370fd13b932fc9fcd44961 /gnu/services/cups.scm
parent77d6d5783b0f698aa832ead809c65eb411cda341 (diff)
downloadguix-4f2ec0f2d1f1cb136b109f9703f88cebb1356f12.tar.gz
guix-4f2ec0f2d1f1cb136b109f9703f88cebb1356f12.zip
gnu: python-bulkvis: Reference upstream issue.
* gnu/packages/bioinformatics.scm (python-bulkvis)[arguments]: Add comment with link to upstream issue for bokeh compatibility patch.
Diffstat (limited to 'gnu/services/cups.scm')
0 files changed, 0 insertions, 0 deletions
-04-02services: configuration: Add user-defined sanitizer support....This changes the 'custom-serializer' field into a generic 'extra-args' field that can be extended to support new literals. Within extra-args, the literals 'sanitizer' and 'serializer' allow for user-defined sanitization and serialization procedures respectively. The 'empty-serializer' was also added as a literal to be used as before. To prevent confusion between the new “explicit” style of specifying a sanitizer, and the old “implicit” style, the latter has been deprecated, and a warning is issued if it is encountered. * gnu/services/configuration.scm (define-configuration-helper): Rename 'custom-serializer' to 'extra-args'. Add support for literals 'sanitizer', 'serializer' and 'empty-serializer'. Rename procedure 'field-sanitizer' to 'default-field-sanitizer' to avoid syntax clash. Only define default field sanitizers if user-defined ones are absent. (normalize-extra-args): New variable. (<configuration-field>)[sanitizer]: New field. * doc/guix.texi (Complex Configurations): Document the newly added literals. * tests/services/configuration.scm: Add tests for the new literals. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Bruno Victal