mirror of
https://github.com/NixOS/nix
synced 2025-06-24 13:51:16 +02:00
13 lines
383 B
Meson
13 lines
383 B
Meson
configure_file(
|
|
input : 'org.nixos.nix-daemon.plist.in',
|
|
output : 'org.nixos.nix-daemon.plist',
|
|
install : true,
|
|
install_dir : get_option('prefix') / 'Library/LaunchDaemons',
|
|
install_mode : 'rw-r--r--',
|
|
configuration : {
|
|
# TODO: unhardcode paths with something like:
|
|
# 'storedir' : store_dir,
|
|
# 'localstatedir' : localstatedir,
|
|
# 'bindir' : bindir,
|
|
},
|
|
)
|