mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +00:00
Gabriel Arazas
3a4833d46d
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.
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
|
|
)
|