2024-06-04 16:28:27 +03:00
|
|
|
# This is just a stub project to include all the others as subprojects
|
|
|
|
# for development shell purposes
|
|
|
|
|
|
|
|
project('nix-dev-shell', 'cpp',
|
|
|
|
version : files('.version'),
|
|
|
|
subproject_dir : 'src',
|
|
|
|
)
|
|
|
|
|
2024-07-08 16:47:25 +03:00
|
|
|
# Internal Libraries
|
2024-06-04 16:28:27 +03:00
|
|
|
subproject('libutil')
|
2024-06-04 16:28:27 +03:00
|
|
|
subproject('libstore')
|
2024-06-06 04:36:18 +03:00
|
|
|
subproject('libfetchers')
|
2024-06-27 05:15:33 +03:00
|
|
|
subproject('libexpr')
|
|
|
|
subproject('libflake')
|
2024-07-03 21:47:23 +03:00
|
|
|
subproject('libmain')
|
|
|
|
subproject('libcmd')
|
2024-06-27 05:15:33 +03:00
|
|
|
|
2024-07-05 23:21:20 +03:00
|
|
|
# Executables
|
|
|
|
subproject('nix')
|
|
|
|
|
2024-06-27 05:15:33 +03:00
|
|
|
# Docs
|
2024-06-28 02:19:32 +03:00
|
|
|
subproject('internal-api-docs')
|
|
|
|
subproject('external-api-docs')
|
2024-06-25 16:35:47 +03:00
|
|
|
|
2024-07-08 16:47:25 +03:00
|
|
|
# External C wrapper libraries
|
2024-06-25 16:35:47 +03:00
|
|
|
subproject('libutil-c')
|
2024-06-27 17:19:03 +03:00
|
|
|
subproject('libstore-c')
|
|
|
|
subproject('libexpr-c')
|
2024-06-25 16:35:47 +03:00
|
|
|
|
2024-06-27 05:15:33 +03:00
|
|
|
# Language Bindings
|
|
|
|
subproject('perl')
|
|
|
|
|
2024-06-25 16:35:47 +03:00
|
|
|
# Testing
|
2024-06-29 17:31:08 +03:00
|
|
|
subproject('nix-util-test-support')
|
|
|
|
subproject('nix-util-tests')
|
|
|
|
subproject('nix-store-test-support')
|
|
|
|
subproject('nix-store-tests')
|
|
|
|
subproject('nix-fetchers-tests')
|
|
|
|
subproject('nix-expr-test-support')
|
|
|
|
subproject('nix-expr-tests')
|
|
|
|
subproject('nix-flake-tests')
|