File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -42442,6 +42442,42 @@ outputOf (attribute set)
42442
42442
42443
42443
42444
42444
42445
+ ## overlays
42446
+
42447
+
42448
+
42449
+ List of overlays to apply to pkgs. Each overlay is a function that takes two arguments: final and prev.
42450
+
42451
+
42452
+
42453
+ *Type:*
42454
+ list of function that evaluates to a(n) function that evaluates to a(n) (attribute set)
42455
+
42456
+
42457
+
42458
+ *Default:*
42459
+ ` [ ] `
42460
+
42461
+
42462
+
42463
+ *Example:*
42464
+
42465
+ ```
42466
+ [
42467
+ (final: prev: {
42468
+ hello = prev.hello.overrideAttrs (oldAttrs: {
42469
+ patches = (oldAttrs.patches or []) ++ [ ./hello-fix.patch ];
42470
+ });
42471
+ })
42472
+ ]
42473
+
42474
+ ```
42475
+
42476
+ *Declared by:*
42477
+ - [https://github.com/cachix/devenv/blob/main/src/modules/top-level.nix](https://github.com/cachix/devenv/blob/main/src/modules/top-level.nix)
42478
+
42479
+
42480
+
42445
42481
## pre-commit
42446
42482
42447
42483
You can’t perform that action at this time.
0 commit comments