8 lines
137 B
Nix
8 lines
137 B
Nix
|
{ lib, ... }:
|
||
|
let
|
||
|
inherit (lib) filterAttrs mapAttrs';
|
||
|
in
|
||
|
{
|
||
|
mapFilterAttrs = pred: f: attrs: filterAttrs pred (mapAttrs' f attrs);
|
||
|
}
|