This commit is contained in:
richΛrd
2025-01-15 20:39:08 -04:00
parent e8da1b723d
commit fc7e84caf4
+13 -9
View File
@@ -23,15 +23,19 @@ let
name = "${repo}-source-${shortRev}";
# Keep this filter as restrictive as possible in order
# to avoid unnecessary rebuilds and limit closure size
filter = lib.mkFilter {
root = path;
include = [ ".*" ];
exclude = [
".*[.]md" ".*[.]yml" ".*/.*_test.go$"
"VERSION" "build/.*"
".*/.*LICENSE.*" ".*/CONTRIB.*" ".*/AUTHOR.*"
];
};
# filter = lib.mkFilter {
# root = path;
# name: type: true;
# include = [ ".*" ];
# exclude = [
# ".*[.]md" ".*[.]yml" ".*/.*_test.go$"
# "VERSION"
# ".*/.*LICENSE.*" ".*/CONTRIB.*" ".*/AUTHOR.*"
# ];
# };
# rramos: Using this instead because rec is ignoring files from .gitignore and for now im not building the libraries
filter = name: type: true;
};
};