blob: 78a7414ed3adf45453866e404a305bf4349adcdb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ depot, lib, ... }:
let
gitignoreNix = import depot.third_party.sources."gitignore.nix" { inherit lib; };
in
{
__functor = _: gitignoreNix.gitignoreSource;
# expose extra functions here
inherit (gitignoreNix)
gitignoreFilter
;
}
|