nixos-config/modules/wrapper-manager/wraparound/bubblewrap/launcher/meson.build
Gabriel Arazas 9687b886a7
wrapper-manager/wraparound: migrate namespace from sandboxing
This is in consideration for other wraparound modules in the future
which does not involve a sandboxing framework or something similar.
2024-10-01 13:03:23 +08:00

14 lines
266 B
Meson

project('wrapper-manager-bubblewrap-launcher',
version: '0.1.0',
license: 'MIT',
meson_version: '>=0.54.0',
)
configure_file(
input: 'app.sh',
output: meson.project_name(),
install_dir: get_option('bindir'),
install_mode: 'rwxr-xr-x',
copy: true,
)