mirror of
https://github.com/NixOS/nix.git
synced 2025-11-21 09:49:36 +01:00
Introduce a new build option 'curl-s3-store' for the curl-based S3 implementation, separate from the existing AWS SDK-based 's3-store'. The two options are mutually exclusive to avoid conflicts. Users can enable the new implementation with: -Dcurl-s3-store=enabled -Ds3-store=disabled
42 lines
940 B
Meson
42 lines
940 B
Meson
# vim: filetype=meson
|
|
|
|
option(
|
|
'embedded-sandbox-shell',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'include the sandbox shell in the Nix binary',
|
|
)
|
|
|
|
option(
|
|
'seccomp-sandboxing',
|
|
type : 'feature',
|
|
description : 'build support for seccomp sandboxing (recommended unless your arch doesn\'t support libseccomp, only relevant on Linux)',
|
|
)
|
|
|
|
option(
|
|
'sandbox-shell',
|
|
type : 'string',
|
|
value : 'busybox',
|
|
description : 'path to a statically-linked shell to use as /bin/sh in sandboxes (usually busybox)',
|
|
)
|
|
|
|
option(
|
|
'store-dir',
|
|
type : 'string',
|
|
value : '/nix/store',
|
|
description : 'path of the Nix store',
|
|
)
|
|
|
|
option(
|
|
'log-dir',
|
|
type : 'string',
|
|
value : '/nix/var/log/nix',
|
|
description : 'path to store logs in for Nix',
|
|
)
|
|
|
|
option(
|
|
'curl-s3-store',
|
|
type : 'feature',
|
|
value : 'disabled',
|
|
description : 'Enable curl-based S3 binary cache store support (requires aws-crt-cpp and curl >= 7.75.0)',
|
|
)
|