mirror of
https://github.com/NixOS/nix.git
synced 2025-11-12 21:46:01 +01:00
Now that we have applied the [1] patch, the diff is much nicer and less noisy. [1]: https://www.github.com/mesonbuild/meson/pull/14861
30 lines
619 B
Text
30 lines
619 B
Text
# Nix-Perl build options
|
|
#============================================================================
|
|
|
|
|
|
# compiler args
|
|
#============================================================================
|
|
|
|
option(
|
|
'tests',
|
|
type : 'feature',
|
|
value : 'disabled',
|
|
description : 'run nix-perl tests',
|
|
)
|
|
|
|
|
|
# Location of Perl Modules
|
|
#============================================================================
|
|
option(
|
|
'dbi_path',
|
|
type : 'string',
|
|
value : '/usr',
|
|
description : 'path to perl::dbi',
|
|
)
|
|
|
|
option(
|
|
'dbd_sqlite_path',
|
|
type : 'string',
|
|
value : '/usr',
|
|
description : 'path to perl::dbd-SQLite',
|
|
)
|