nix-config/overlays/tandoor-recipes-bump-allauth/default.nix
Bruno BELANYI 249ee14d39
All checks were successful
ci/woodpecker/push/check Pipeline was successful
overlays: add 'tandoor-recipes-bump-allauth'
This should only be temporary until they release a new version which
_does_ support the middleware (see [1]).

[1]: https://github.com/TandoorRecipes/recipes/pull/2706
2023-10-31 12:20:47 +00:00

10 lines
218 B
Nix

_self: prev:
{
tandoor-recipes = prev.tandoor-recipes.overrideAttrs (oa: {
patches = (oa.patches or [ ]) ++ [
# https://github.com/TandoorRecipes/recipes/pull/2706
./bump-allauth.patch
];
});
}