mirror of
https://github.com/NixOS/nix.git
synced 2025-02-19 18:32:36 +00:00
16 lines
346 B
Meson
16 lines
346 B
Meson
# vim: filetype=meson
|
|
|
|
option(
|
|
'markdown',
|
|
type: 'feature',
|
|
description: 'Enable Markdown rendering in the Nix binary (requires lowdown)',
|
|
)
|
|
|
|
option(
|
|
'readline-flavor',
|
|
type : 'combo',
|
|
choices : ['editline', 'readline'],
|
|
value : 'editline',
|
|
description : 'Which library to use for nice line editing with the Nix language REPL',
|
|
)
|