1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-02 07:00:59 +01:00
nix/src/libcmd/meson.options
John Ericson 83f92a8cba Rename the "markdown" Meson flag to "lowdown"
This is because we are about to use `cmark`. (Mored details in the next
commit.) We don't need this flag, or any other, to control the `cmark`
dependency --- it can just be unconditional. The name "lowdown" makes
clear that the original flag is just about lowdown, and no longer about
markdown in general.
2025-11-10 19:57:41 -05:00

15 lines
358 B
Meson

# vim: filetype=meson
option(
'lowdown',
type : 'feature',
description : 'Use the \'lowdown\' library to display colored Markdown in the terminal',
)
option(
'readline-flavor',
type : 'combo',
choices : [ 'editline', 'readline' ],
value : 'editline',
description : 'Which library to use for nice line editing with the Nix language REPL',
)