mirror of
https://github.com/NixOS/nix.git
synced 2025-11-17 16:02:43 +01:00
Special thanks to everyone that has worked on a Meson port so far, @p01arst0rm and @Qyriad in particular. Co-Authored-By: p01arst0rm <polar@ever3st.com> Co-Authored-By: Artemis Tosini <lix@artem.ist> Co-Authored-By: Artemis Tosini <me@artem.ist> Co-Authored-By: Felix Uhl <felix.uhl@outlook.com> Co-Authored-By: Jade Lovelace <lix@jade.fyi> Co-Authored-By: Lunaphied <lunaphied@lunaphied.me> Co-Authored-By: Maximilian Bosch <maximilian@mbosch.me> Co-Authored-By: Pierre Bourdon <delroth@gmail.com> Co-Authored-By: Qyriad <qyriad@qyriad.me> Co-Authored-By: Rebecca Turner <rbt@sent.as> Co-Authored-By: Winter <winter@winter.cafe> Co-Authored-By: eldritch horrors <pennae@lix.systems> Co-Authored-By: jade <lix@jade.fyi> Co-Authored-By: julia <midnight@trainwit.ch> Co-Authored-By: rebecca “wiggles” turner <rbt@sent.as> Co-Authored-By: wiggles dog <rbt@sent.as> Co-Authored-By: fricklerhandwerk <valentin@fricklerhandwerk.de> Co-authored-by: Eli Schwartz <eschwartz93@gmail.com>
25 lines
836 B
Meson
25 lines
836 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('state-dir', type : 'string', value : '/nix/var',
|
|
description : 'path to store state in for Nix',
|
|
)
|
|
|
|
option('log-dir', type : 'string', value : '/nix/var/log/nix',
|
|
description : 'path to store logs in for Nix',
|
|
)
|