diff --git a/nix/status-go/source.nix b/nix/status-go/source.nix index 6134b8946f..5559d6ba0a 100644 --- a/nix/status-go/source.nix +++ b/nix/status-go/source.nix @@ -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; }; };