aboutsummaryrefslogtreecommitdiff
path: root/tests/channels.scm
diff options
context:
space:
mode:
authorBenjamin <benjamin@uvy.fr>2024-03-24 00:35:17 +0100
committerDanny Milosavljevic <dannym@friendly-machines.com>2024-12-23 11:48:16 +0100
commit31a1e7d375cd554149bac83e5acaaf0ef63b65b6 (patch)
treed8716169374a0987253d74a6d005007d1146326b /tests/channels.scm
parent4075cda947fab82ca573193c08d693ac045aabe1 (diff)
downloadguix-31a1e7d375cd554149bac83e5acaaf0ef63b65b6.tar.gz
guix-31a1e7d375cd554149bac83e5acaaf0ef63b65b6.zip
gnu: Add ocaml-chrome-trace.
* gnu/packages/ocaml.scm (ocaml-chrome-trace): New variable. Change-Id: I24dd519d913ea240c3500b824e2342a33d34ed1a Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
Diffstat (limited to 'tests/channels.scm')
0 files changed, 0 insertions, 0 deletions
.com> Bruno Victal 2023-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