From fc7e84caf455961222f6282cb8fd39eaaa315acf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?rich=CE=9Brd?= Date: Wed, 15 Jan 2025 20:37:28 -0400 Subject: [PATCH] test --- nix/status-go/source.nix | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) 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; }; };