Ignore more things in the source for release.nix

This commit is contained in:
Elliot Cameron 2020-05-11 18:11:32 -04:00
parent a881c38762
commit 00fe982a48
No known key found for this signature in database
GPG Key ID: 6ABB57E3D52B0628

View File

@ -27,9 +27,16 @@ let
(self: super: {
_dep = super._dep // {
reflex-dom = builtins.filterSource (path: type: !(builtins.elem (baseNameOf path) [
"release.nix"
".git"
"dist"
"dist-newstyle"
]) && !(builtins.elem path [
./CONTRIBUTING.md
./FAQ.md
./Quickref.md
./README.md
./release.nix
./test
])) ./.;
};
})