blob: 4fe5848506f0eae3b89449fce307f89b98c2d068 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
configure_file(
input : 'nix-profile.sh.in',
output : 'nix-profile.sh',
configuration : {
'localstatedir': state_dir,
}
)
# https://github.com/mesonbuild/meson/issues/860
configure_file(
input : 'nix-profile.sh.in',
output : 'nix-profile.sh.in',
copy : true,
)
|