From 142ed4a4817cfd147645eb3867bc1c706a5b6a9f Mon Sep 17 00:00:00 2001 From: Alex Gherghisan Date: Mon, 9 Oct 2023 12:26:05 +0100 Subject: [PATCH] fix: include .nr and .sol files in builds (#3039) --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 4334cb8a3f0..0a9bf65322d 100644 --- a/flake.nix +++ b/flake.nix @@ -81,7 +81,7 @@ # Custom filter with various file extensions that we rely upon to build packages # Currently: `.nr`, `.sol`, `.sh`, `.json`, `.md` filter = path: type: - (builtins.match ".*\.(sh|json|md)$" path != null) || (craneLib.filterCargoSources path type); + (builtins.match ".*\.(nr|sol|sh|json|md)$" path != null) || (craneLib.filterCargoSources path type); }; # TODO(#1198): It'd be nice to include these flags when running `cargo clippy` in a devShell.