-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request NixOS#11302 from obsidiansystems/meson-misc-2
Misc Meson progress
- Loading branch information
Showing
19 changed files
with
141 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
configure_file( | ||
input : 'completion.sh', | ||
output : 'nix', | ||
install : true, | ||
install_dir : get_option('datadir') / 'bash-completion' / 'completions', | ||
install_mode : 'rw-r--r--', | ||
copy : true, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
configure_file( | ||
input : 'completion.fish', | ||
output : 'nix.fish', | ||
install : true, | ||
install_dir : get_option('datadir') / 'fish' / 'vendor_completions.d', | ||
install_mode : 'rw-r--r--', | ||
copy : true, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
subdir('bash') | ||
subdir('fish') | ||
subdir('zsh') | ||
|
||
subdir('systemd') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
foreach config : [ 'nix-daemon.socket', 'nix-daemon.service' ] | ||
configure_file( | ||
input : config + '.in', | ||
output : config, | ||
install : true, | ||
install_dir : get_option('prefix') / 'lib/systemd/system', | ||
install_mode : 'rw-r--r--', | ||
configuration : { | ||
'storedir' : store_dir, | ||
'localstatedir' : localstatedir, | ||
'bindir' : get_option('datadir'), | ||
}, | ||
) | ||
endforeach | ||
|
||
configure_file( | ||
input : 'nix-daemon.conf.in', | ||
output : 'nix-daemon.conf', | ||
install : true, | ||
install_dir : get_option('prefix') / 'lib/tmpfiles.d', | ||
install_mode : 'rw-r--r--', | ||
configuration : { | ||
'localstatedir' : localstatedir, | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
foreach script : [ [ 'completion.zsh', '_nix' ], [ 'run-help-nix' ] ] | ||
configure_file( | ||
input : script[0], | ||
output : script.get(1, script[0]), | ||
install : true, | ||
install_dir : get_option('datadir') / 'zsh/site-functions', | ||
install_mode : 'rw-r--r--', | ||
copy : true, | ||
) | ||
endforeach |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# configures `scripts/nix-profile.sh.in` (and copies the original to the build directory). | ||
# this is only needed for tests, but running it unconditionally does not hurt enough to care. | ||
configure_file( | ||
input : 'nix-profile.sh.in', | ||
output : 'nix-profile.sh', | ||
configuration : { | ||
'localstatedir': localstatedir, | ||
} | ||
) | ||
|
||
# https://github.com/mesonbuild/meson/issues/860 | ||
configure_file( | ||
input : 'nix-profile.sh.in', | ||
output : 'nix-profile.sh.in', | ||
copy : true, | ||
) | ||
|
||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# vim: filetype=meson | ||
|
||
# A relative path means it gets appended to prefix. | ||
option('profile-dir', type : 'string', value : 'etc/profile.d', | ||
description : 'the path to install shell profile files', | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../misc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../scripts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters