mirror of
https://github.com/NixOS/nix.git
synced 2025-12-02 07:00:59 +01:00
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.
15 lines
358 B
Meson
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',
|
|
)
|