File tree 3 files changed +6
-51
lines changed
3 files changed +6
-51
lines changed Original file line number Diff line number Diff line change 12
12
" id " : " shellcheck"
13
13
}
14
14
],
15
- " repo " : " .pre-commit-hooks" ,
15
+ " repo " : " .pre-commit-hooks/ " ,
16
16
" rev " : " master"
17
17
}
18
18
]
Original file line number Diff line number Diff line change 179
179
inherit ( import ( import ../nix/sources.nix ) . gitignore { inherit lib ; } )
180
180
gitignoreSource
181
181
;
182
-
183
- patch =
184
- pre-commit :
185
- pre-commit . overrideAttrs (
186
- drv :
187
- {
188
- patches =
189
- ( drv . patches or [ ] ) ++ [
190
- ../nix/pre-commit-resolve-symlink.patch
191
- ] ;
192
- name = "${ drv . name } -nix" ;
193
- }
194
- ) ;
195
-
196
182
in {
197
183
options . pre-commit =
198
184
{
@@ -204,10 +190,10 @@ in {
204
190
''
205
191
The pre-commit package to use.
206
192
'' ;
207
- default = patch pkgs . pre-commit ;
193
+ default = pkgs . pre-commit ;
208
194
defaultText =
209
195
literalExample ''
210
- patch pkgs.pre-commit
196
+ pkgs.pre-commit
211
197
'' ;
212
198
} ;
213
199
303
289
repos =
304
290
[
305
291
{
306
- repo = ".pre-commit-hooks" ;
292
+ repo = ".pre-commit-hooks/ " ;
307
293
rev = "master" ;
308
294
hooks =
309
295
mapAttrsToList ( id : _value : { inherit id ; } ) enabledHooks ;
353
339
354
340
if $doInstall; then
355
341
pre-commit install
342
+ # this is needed as the hook repo configuration is cached
343
+ pre-commit clean
356
344
fi
357
345
fi
358
346
'' ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments