mirror of
https://github.com/NixOS/nix
synced 2025-06-24 22:11:15 +02:00
Restore multiline formatting of lists in meson files
Applies a workaround to enforce multiline formatting
of lists to reduce code churn introduced in 93a42a5971
.
This commit is contained in:
parent
42ea2724a8
commit
6ef683cb2a
12 changed files with 54 additions and 12 deletions
|
@ -1,6 +1,9 @@
|
|||
libplugintest = shared_module(
|
||||
'plugintest',
|
||||
'plugintest.cc',
|
||||
dependencies : [ dependency('nix-expr') ],
|
||||
dependencies : [
|
||||
dependency('nix-expr'),
|
||||
# hack for trailing newline
|
||||
],
|
||||
build_by_default : false,
|
||||
)
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
libstoreconsumer_tester = executable(
|
||||
'test-libstoreconsumer',
|
||||
'main.cc',
|
||||
dependencies : [ dependency('nix-store') ],
|
||||
dependencies : [
|
||||
dependency('nix-store'),
|
||||
# hack for trailing newline
|
||||
],
|
||||
build_by_default : false,
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue