Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/internal-api-docs/doxygen.cfg.in
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ INPUT = \
@src@/libutil/args \
@src@/libutil-tests \
@src@/libutil-test-support/tests \
@src@/nix \
@src@/nix-env \
@src@/nix-store
@src@/nix

# 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
Expand Down
1 change: 0 additions & 1 deletion src/nix/build-remote

This file was deleted.

1 change: 0 additions & 1 deletion src/nix/nix-build

This file was deleted.

File renamed without changes.
1 change: 0 additions & 1 deletion src/nix/nix-channel

This file was deleted.

File renamed without changes.
1 change: 0 additions & 1 deletion src/nix/nix-collect-garbage

This file was deleted.

1 change: 0 additions & 1 deletion src/nix/nix-copy-closure

This file was deleted.

1 change: 0 additions & 1 deletion src/nix/nix-env

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion src/nix/nix-instantiate

This file was deleted.

1 change: 0 additions & 1 deletion src/nix/nix-store

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
35 changes: 7 additions & 28 deletions src/nix/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,7 @@ mkMesonExecutable (finalAttrs: {

# Symbolic links to other dirs
## exes
./build-remote
./doc
./nix-build
./nix-channel
./nix-collect-garbage
./nix-copy-closure
./nix-env
./nix-instantiate
./nix-store
## dirs
./scripts
../../scripts
Expand All @@ -55,8 +47,8 @@ mkMesonExecutable (finalAttrs: {
../../doc/manual/generate-store-info.nix

# Other files to be included as string literals
../nix-channel/unpack-channel.nix
../nix-env/buildenv.nix
./nix-channel/unpack-channel.nix
./nix-env/buildenv.nix
./get-env.sh
./help-stores.md
../../doc/manual/source/store/types/index.md.in
Expand All @@ -65,24 +57,11 @@ mkMesonExecutable (finalAttrs: {

# Files
]
++
lib.concatMap
(dir: [
(fileset.fileFilter (file: file.hasExt "cc") dir)
(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
]
++ [
(fileset.fileFilter (file: file.hasExt "cc") ./.)
(fileset.fileFilter (file: file.hasExt "hh") ./.)
(fileset.fileFilter (file: file.hasExt "md") ./.)
]
);

buildInputs = [
Expand Down
Loading