mirror of
https://github.com/NixOS/nix.git
synced 2025-10-16 22:47:13 +08:00

Now that we have applied the [1] patch, the diff is much nicer and less noisy. [1]: https://www.github.com/mesonbuild/meson/pull/14861
14 lines
381 B
Meson
14 lines
381 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,
|
|
},
|
|
)
|