nix: include benches in source filter; fix build

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Id78ee5f62a5168feef09b5f8713b107c6a6a6964
This commit is contained in:
raf 2025-11-17 21:48:15 +03:00
commit 6f8d1ffa83
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -20,6 +20,7 @@ in
(fs.fileFilter (file: builtins.any file.hasExt ["rs"]) (s + /src)) (fs.fileFilter (file: builtins.any file.hasExt ["rs"]) (s + /src))
(s + /Cargo.lock) (s + /Cargo.lock)
(s + /Cargo.toml) (s + /Cargo.toml)
(s + /benches)
]; ];
}; };