mirror of
https://github.com/NixOS/nix.git
synced 2025-11-17 07:52:43 +01:00
21 lines
365 B
Meson
21 lines
365 B
Meson
sources += files(
|
|
'build/child.cc',
|
|
'build/derivation-builder.cc',
|
|
'build/hook-instance.cc',
|
|
'pathlocks.cc',
|
|
'user-lock.cc',
|
|
)
|
|
|
|
if host_machine.system() == 'linux'
|
|
sources += files(
|
|
'build/pasta.cc',
|
|
)
|
|
endif
|
|
|
|
if host_machine.system() == 'darwin'
|
|
sources += files(
|
|
'build/darwin-derivation-builder.cc',
|
|
)
|
|
endif
|
|
|
|
subdir('include/nix/store')
|