Skip to content

Commit f617718

Browse files
committed
Fix nix flake build
Signed-off-by: Christian Poveda <[email protected]>
1 parent 10304dd commit f617718

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

flake.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@
3636
xmlFilter = path: _type: builtins.match ".*xml$" path != null;
3737
jsonFilter = path: _type: builtins.match ".*json$" path != null;
3838
snapshotTestFilter = path: _type: builtins.match ".*snap" path != null;
39+
stderrFilter = path: _type: builtins.match ".*stderr" path != null;
3940

4041
srcFilter = path: type:
41-
(xmlFilter path type) || (jsonFilter path type) || (snapshotTestFilter path type) || (craneLib.filterCargoSources path type);
42+
(xmlFilter path type) || (jsonFilter path type) || (snapshotTestFilter path type) || (stderrFilter path type) || (craneLib.filterCargoSources path type);
4243

4344
src = pkgs.lib.cleanSourceWith {
4445
src = craneLib.path ./.;

0 commit comments

Comments
 (0)