mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 10:46:15 +02:00
34 lines
658 B
Meson
34 lines
658 B
Meson
|
configure_file(
|
||
|
input : 'config.nix.in',
|
||
|
output : 'config.nix',
|
||
|
configuration : test_confdata,
|
||
|
)
|
||
|
|
||
|
suites += {
|
||
|
'name': 'ca',
|
||
|
'deps': [],
|
||
|
'tests': [
|
||
|
'build-with-garbage-path.sh',
|
||
|
'build.sh',
|
||
|
'build-cache.sh',
|
||
|
'concurrent-builds.sh',
|
||
|
'derivation-json.sh',
|
||
|
'duplicate-realisation-in-closure.sh',
|
||
|
'eval-store.sh',
|
||
|
'gc.sh',
|
||
|
'import-derivation.sh',
|
||
|
'new-build-cmd.sh',
|
||
|
'nix-copy.sh',
|
||
|
'nix-run.sh',
|
||
|
'nix-shell.sh',
|
||
|
'post-hook.sh',
|
||
|
'recursive.sh',
|
||
|
'repl.sh',
|
||
|
'selfref-gc.sh',
|
||
|
'signatures.sh',
|
||
|
'substitute.sh',
|
||
|
'why-depends.sh',
|
||
|
],
|
||
|
'workdir': meson.current_build_dir(),
|
||
|
}
|