1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-24 22:11:15 +02:00

flake: Add meson formatter

This adds a meson.format file that mostly mirrors the projects
meson style and a pre-commit hook to enforce this style.
Some low-diff files are formatted.
This commit is contained in:
Sergei Zimmerman 2025-06-11 22:08:03 +00:00
parent 371fcf91c3
commit 93a42a5971
No known key found for this signature in database
GPG key ID: A9B0B557CA632325
18 changed files with 152 additions and 52 deletions

View file

@ -1,8 +1,6 @@
libplugintest = shared_module(
'plugintest',
'plugintest.cc',
dependencies : [
dependency('nix-expr'),
],
dependencies : [ dependency('nix-expr') ],
build_by_default : false,
)

View file

@ -1,8 +1,6 @@
libstoreconsumer_tester = executable(
'test-libstoreconsumer',
'main.cc',
dependencies : [
dependency('nix-store'),
],
dependencies : [ dependency('nix-store') ],
build_by_default : false,
)