mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
14 lines
268 B
Meson
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
|
||
|
)
|