-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
enhancementNew feature or requestNew feature or request
Description
I'd like to be able to specify exact files such as
rec {
artifact_a = nix-filter {
root = ../../;
include = [
./relative/path/to/a.ext
./another/path/to/b.ext
];
};
artifact_b = nix-filter {
root = ../../;
include = [
artifact_a
./third/path/to/c.ext
];
};
}And i'd expect the output for artifact_b to contain
relative/path/to/a.ext,
another/path/to/b.ext,
third/path/to/c.ext,
keeping the directory heirarchy.
Why?
It would allow the user to composable build src lists. Artifact A needs files x, y, artifact B needs A + file z, whilst maintaining their relative paths. Unsure how to achieve file level granularity currently
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request