blob: 78a7414ed3adf45453866e404a305bf4349adcdb (
plain) (
tree)
|
|
{ depot, lib, ... }:
let
gitignoreNix = import depot.third_party.sources."gitignore.nix" { inherit lib; };
in
{
__functor = _: gitignoreNix.gitignoreSource;
# expose extra functions here
inherit (gitignoreNix)
gitignoreFilter
;
}
|