Skip to content

Commit cbae6f8

Browse files
committed
tools: fix timeout errors in lint-nix job
1 parent 82409af commit cbae6f8

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tools/nix/pkgs.nix

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,14 @@ let
88
}) arg;
99
in
1010
nixpkgs
11+
// {
12+
nixfmt-tree = nixpkgs.nixfmt-tree.overrideAttrs (old: {
13+
patches = (old.patches or [ ]) ++ [
14+
(nixpkgs.fetchpatch2 {
15+
url = "https://github.com/numtide/treefmt/commit/c370339aa3390267eb5b45cc6cb1566aa8cab1b9.patch?full_index=1";
16+
revert = true;
17+
hash = "sha256-ysGtMvXbaNLuKc4CkrESTxTwCcdoiPNZZWCyailE6co=";
18+
})
19+
];
20+
});
21+
}

0 commit comments

Comments
 (0)