mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
Gabriel Arazas
9687b886a7
This is in consideration for other wraparound modules in the future which does not involve a sandboxing framework or something similar.
14 lines
266 B
Meson
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,
|
|
)
|