mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 12:06:01 +01:00
nix-cli: Move nix2 binaries sources properly into nix subproject
There have been prior concerns about reogranizing the repo, but this seems like a trivial simplification which will not interfere with either our packaging or the modular builds in nixpkgs.
This commit is contained in:
parent
51a32e4645
commit
aea312dae3
26 changed files with 8 additions and 39 deletions
|
|
@ -57,9 +57,7 @@ INPUT = \
|
||||||
@src@/libutil/args \
|
@src@/libutil/args \
|
||||||
@src@/libutil-tests \
|
@src@/libutil-tests \
|
||||||
@src@/libutil-test-support/tests \
|
@src@/libutil-test-support/tests \
|
||||||
@src@/nix \
|
@src@/nix
|
||||||
@src@/nix-env \
|
|
||||||
@src@/nix-store
|
|
||||||
|
|
||||||
# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names
|
# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names
|
||||||
# in the source code. If set to NO, only conditional compilation will be
|
# in the source code. If set to NO, only conditional compilation will be
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
../build-remote
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
../nix-build
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
../nix-channel
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
../nix-collect-garbage
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
../nix-copy-closure
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
../nix-env
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
../nix-instantiate
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
../nix-store/
|
|
||||||
|
|
@ -33,15 +33,7 @@ mkMesonExecutable (finalAttrs: {
|
||||||
|
|
||||||
# Symbolic links to other dirs
|
# Symbolic links to other dirs
|
||||||
## exes
|
## exes
|
||||||
./build-remote
|
|
||||||
./doc
|
./doc
|
||||||
./nix-build
|
|
||||||
./nix-channel
|
|
||||||
./nix-collect-garbage
|
|
||||||
./nix-copy-closure
|
|
||||||
./nix-env
|
|
||||||
./nix-instantiate
|
|
||||||
./nix-store
|
|
||||||
## dirs
|
## dirs
|
||||||
./scripts
|
./scripts
|
||||||
../../scripts
|
../../scripts
|
||||||
|
|
@ -55,8 +47,8 @@ mkMesonExecutable (finalAttrs: {
|
||||||
../../doc/manual/generate-store-info.nix
|
../../doc/manual/generate-store-info.nix
|
||||||
|
|
||||||
# Other files to be included as string literals
|
# Other files to be included as string literals
|
||||||
../nix-channel/unpack-channel.nix
|
./nix-channel/unpack-channel.nix
|
||||||
../nix-env/buildenv.nix
|
./nix-env/buildenv.nix
|
||||||
./get-env.sh
|
./get-env.sh
|
||||||
./help-stores.md
|
./help-stores.md
|
||||||
../../doc/manual/source/store/types/index.md.in
|
../../doc/manual/source/store/types/index.md.in
|
||||||
|
|
@ -65,23 +57,10 @@ mkMesonExecutable (finalAttrs: {
|
||||||
|
|
||||||
# Files
|
# Files
|
||||||
]
|
]
|
||||||
++
|
++ [
|
||||||
lib.concatMap
|
(fileset.fileFilter (file: file.hasExt "cc") ./.)
|
||||||
(dir: [
|
(fileset.fileFilter (file: file.hasExt "hh") ./.)
|
||||||
(fileset.fileFilter (file: file.hasExt "cc") dir)
|
(fileset.fileFilter (file: file.hasExt "md") ./.)
|
||||||
(fileset.fileFilter (file: file.hasExt "hh") dir)
|
|
||||||
(fileset.fileFilter (file: file.hasExt "md") dir)
|
|
||||||
])
|
|
||||||
[
|
|
||||||
./.
|
|
||||||
../build-remote
|
|
||||||
../nix-build
|
|
||||||
../nix-channel
|
|
||||||
../nix-collect-garbage
|
|
||||||
../nix-copy-closure
|
|
||||||
../nix-env
|
|
||||||
../nix-instantiate
|
|
||||||
../nix-store
|
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue