nixos-config/modules/wrapper-manager/sandboxing/bubblewrap/launcher/meson.build
Gabriel Arazas 3a4833d46d
wrapper-manager/sandboxing/bubblewrap: init launcher submodule
At the end of the day, I decided to make it in nixpkgs' runtime shell
(GNU Bash) instead of Rust because it'll be a pain in the ass.
2024-08-05 18:42:12 +08:00

14 lines
268 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',
install: true
)