mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +02:00
6594573f3d
Identified in https://github.com/NixOS/nix/pull/11224#discussion_r1715056429 Co-Authored-By: Robert Hensing <robert@roberthensing.nl>
20 lines
464 B
Meson
20 lines
464 B
Meson
configure_file(
|
|
input : 'nix-profile.sh.in',
|
|
output : 'nix-profile.sh',
|
|
configuration : {
|
|
'localstatedir': localstatedir,
|
|
}
|
|
)
|
|
|
|
foreach rc : [ '.sh', '.fish', '-daemon.sh', '-daemon.fish' ]
|
|
configure_file(
|
|
input : 'nix-profile' + rc + '.in',
|
|
output : 'nix' + rc,
|
|
install : true,
|
|
install_dir : get_option('profile-dir'),
|
|
install_mode : 'rw-r--r--',
|
|
configuration : {
|
|
'localstatedir': localstatedir,
|
|
},
|
|
)
|
|
endforeach
|